ood_core 0.23.3 → 0.23.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -1
- data/lib/ood_core/job/adapters/fujitsu_tcs.rb +5 -3
- data/lib/ood_core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aaa540da7d8afffa45674650d11ef7bf260e55ff44e32244950d233e1d4d145a
|
|
4
|
+
data.tar.gz: ff4e1fbe8c59309f36fc45c634cb27752d71e3e66e847496ab3678f556a90e8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc0fecb3a8eae6db9c5d6c40d62d4568f930fc197a153ec28a0942ec2d2bc8da0e488e6fe86d906ce03ca2ae53d911c43804623e7b185335281d23b1cef7af41
|
|
7
|
+
data.tar.gz: 56eae7c8a31c5f4b625b06b33b84def3d80a0652bd883f39f656a276c63e7224b88cb9ed801ef4482e62d1eeee6aeff366787414d21c52daf03cc4eb2265d83a
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.23.4] - 03-06-2023
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- [800](https://github.com/OSC/ood_core/pull/800) fixed some Fujitsu bugs.
|
|
15
|
+
|
|
16
|
+
## [0.23.3] - 02-17-2023
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- ACLs now respond to `allowlist` and `blocklist` in [795](https://github.com/OSC/ood_core/pull/795).
|
|
21
|
+
- Sites can now use `OOD_SSH_PORT` to use a nonstandard port in [797](https://github.com/OSC/ood_core/pull/797).
|
|
22
|
+
|
|
10
23
|
## [0.23.2] - 02-02-2023
|
|
11
24
|
|
|
12
25
|
### Fixed
|
|
@@ -486,7 +499,9 @@ Functionally the same as [0.17.3] but with some CI updates.
|
|
|
486
499
|
### Added
|
|
487
500
|
- Initial release!
|
|
488
501
|
|
|
489
|
-
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.23.
|
|
502
|
+
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.23.4...HEAD
|
|
503
|
+
[0.23.4]: https://github.com/OSC/ood_core/compare/v0.23.4...v0.23.3
|
|
504
|
+
[0.23.3]: https://github.com/OSC/ood_core/compare/v0.23.3...v0.23.2
|
|
490
505
|
[0.23.2]: https://github.com/OSC/ood_core/compare/v0.23.1...v0.23.2
|
|
491
506
|
[0.23.1]: https://github.com/OSC/ood_core/compare/v0.23.0...v0.23.1
|
|
492
507
|
[0.23.0]: https://github.com/OSC/ood_core/compare/v0.22.0...v0.23.0
|
|
@@ -221,10 +221,12 @@ module OodCore
|
|
|
221
221
|
else
|
|
222
222
|
args.concat ["-e", script.error_path]
|
|
223
223
|
end
|
|
224
|
-
args.concat ["
|
|
224
|
+
args.concat ["-L rscgrp=" + script.queue_name] unless script.queue_name.nil?
|
|
225
225
|
args.concat ["-p", script.priority] unless script.priority.nil?
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
|
|
227
|
+
# start_time: <%= Time.local(2023,11,22,13,4).to_i %> in form.yml.erb
|
|
228
|
+
args.concat ["--at", script.start_time.localtime.strftime("%C%y%m%d%H%M")] unless script.start_time.nil?
|
|
229
|
+
args.concat ["-L elapse=" + seconds_to_duration(script.wall_time)] unless script.wall_time.nil?
|
|
228
230
|
args.concat ["--bulk", "--sparam", script.job_array_request] unless script.job_array_request.nil?
|
|
229
231
|
|
|
230
232
|
# Set environment variables
|
data/lib/ood_core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ood_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.23.
|
|
4
|
+
version: 0.23.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Franz
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-
|
|
13
|
+
date: 2023-03-06 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ood_support
|