origen 0.60.8 → 0.60.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd12e9a60b3bf554156fdb22359b944dcb187e5c7ef36006c87e1ec3174dcc13
4
- data.tar.gz: c5652e6831e503a86a35389ae06ef37ae1acc1105f3758ae58b9e11fcf80ab55
3
+ metadata.gz: fafcba7b56376df705b3e2d974a5b1631874a75105cb792a2ad1d8d1e0bc18ac
4
+ data.tar.gz: 0c08b0907caa4905a45a712594f09598c2146548b00fe5e8f1727984f380d557
5
5
  SHA512:
6
- metadata.gz: e51bb5aeb384256a1d4ba37535043437e2c8731e04c578029610da24e9e4e842b72b7a22ebd0d407376aebdec0f375aeba85b82585778094e63fe1f2a95a82ef
7
- data.tar.gz: c48528d8beb4eb0a278c1a6c0cc20957d93720bd24d34c91a7177a46b843e87b01dd18bf5de6bb83790e91eafd13a3e8a347a5948bfdeaf3da9f8ae75f42ae5e
6
+ metadata.gz: 6dbc90849b333becc468462b2e63fe6f598e5d5302a2e52be291346a939d1ceb9652669e01ea5e7e6af0adb85e8355418153d7e48dddf7b0b9209de90e1ed507
7
+ data.tar.gz: 4271de6f804efde5a165c9835bb9e22f20acf9e5c430ae1032fe8cc3612fe498a8cc4721d967fdda2d93a63ad8f1c8cda7fc64c2be53cc2f5149d3f996720263
data/config/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Origen
2
2
  MAJOR = 0
3
3
  MINOR = 60
4
- BUGFIX = 8
4
+ BUGFIX = 9
5
5
  DEV = nil
6
6
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
7
7
  end
@@ -150,11 +150,11 @@ module Origen
150
150
  i = 0
151
151
  `bjobs 2>&1`.split("\n").each do |line|
152
152
  if line =~ /^(\d+).*(RUN|PEND)/
153
- if @queue_count_only && @queue
153
+ if config.queue_count_only && config.queue
154
154
  # only count jobs for current queue, helpful for when
155
155
  # you have a service account user that runs lsf for a
156
156
  # lot of jobs in addition to origen jobs
157
- if line =~ /#{@queue}/
157
+ if line =~ /#{config.queue}/
158
158
  i += 1
159
159
  end
160
160
  else
@@ -171,7 +171,7 @@ module Origen
171
171
  def limit_job_submissions
172
172
  @local_job_count ||= 0
173
173
  if @local_job_count == 100
174
- while remote_jobs_count > @max_jobs
174
+ while remote_jobs_count > config.max_jobs
175
175
  puts 'Waiting for submitted jobs count to fall below limit...'
176
176
  sleep 5
177
177
  end
@@ -151,6 +151,8 @@ gem_use_from_system:
151
151
  # lsf_project: 'msg.te'
152
152
  # lsf_resource: 'rhel6'
153
153
  # lsf_cores: '1'
154
+ # lsf_max_jobs: 400
155
+ # lsf_queue_count_only: false
154
156
 
155
157
  # lsf_debug is needed for spec tests on the core.
156
158
  lsf_debug: 'false'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.8
4
+ version: 0.60.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-02 00:00:00.000000000 Z
11
+ date: 2023-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport