scout-gear 10.8.2 → 10.8.3
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/VERSION +1 -1
- data/lib/scout/workflow/deployment/orchestrator.rb +1 -1
- data/scout-gear.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa23ee1be6e784b3875d08336b9c093f137b5ff75e48e487e15b6f5fc23de3c6
|
4
|
+
data.tar.gz: 4527449eb1764d3c1de6a93b94ff6ddc178a3d1968ed6b530a4cda4456c3f012
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd4933a3f9605d84024fe3f32b86f0103d6bc1a41941d1c258541b48cb1559937982130706bda7702d45246a79ab628360c9fab83fb4a97ac1141082c979ff7c
|
7
|
+
data.tar.gz: 627c8fb68070b9284c60ff32c70bf6bfaf8951d4569ce2c67bd0fda89eab18366c8e5865a94f5dc0e90f2ad7930a52416ea4dd02c6eb76bc2a777e6267dd9d66
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.8.
|
1
|
+
10.8.3
|
@@ -191,6 +191,7 @@ module Workflow
|
|
191
191
|
def process(rules, jobs = nil)
|
192
192
|
jobs, rules = rules, {} if jobs.nil?
|
193
193
|
jobs = [jobs] if Step === jobs
|
194
|
+
failed_jobs = []
|
194
195
|
begin
|
195
196
|
|
196
197
|
workload = Orchestrator.workload(jobs)
|
@@ -199,7 +200,6 @@ module Workflow
|
|
199
200
|
all_jobs.each{|job| job.clean unless (job.done? && job.updated?) || (job.error? && ! job.recoverable_error?) }
|
200
201
|
|
201
202
|
top_level_jobs = jobs.collect{|job| job.path }
|
202
|
-
failed_jobs = []
|
203
203
|
while workload.any?
|
204
204
|
|
205
205
|
candidates = resources_used.keys + Orchestrator.candidates(workload, rules)
|
data/scout-gear.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: scout-gear 10.8.
|
5
|
+
# stub: scout-gear 10.8.3 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "scout-gear".freeze
|
9
|
-
s.version = "10.8.
|
9
|
+
s.version = "10.8.3".freeze
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|