travis_parallel_sentinel 0.1.11 → 0.1.12
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/Gemfile.lock +1 -1
- data/lib/travis_parallel_sentinel.rb +1 -1
- data/lib/travis_parallel_sentinel/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e76c7a8d7053f0440915a0002a13fdbce31a8dd1
|
|
4
|
+
data.tar.gz: ede4e66bbdb2d0ecb5b9596c4466965aeae409c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f728ea250a44a25926ce4dd257363858f2defa1f3d6f748929c4dda3f77324af6db3514b5e30fd810529d8da9f8bf53311e8198f2ae81a4aaca049dd2e85519
|
|
7
|
+
data.tar.gz: a91eb77e2b2be8ec144a0cd7b63956cbf801c7f9b577b4d499ee6bc248f86c8914ea25e1d3c0d527ba62d690ac11c45475358175e1f616ca5f55b7722bee27e0
|
data/Gemfile.lock
CHANGED
|
@@ -16,7 +16,7 @@ module TravisParallelSentinel
|
|
|
16
16
|
return :deploy if TRAVIS_JOB_NUMBER == '' # no build matrix, so good to go
|
|
17
17
|
return :ignore unless TRAVIS_JOB_NUMBER =~ /\.1$/ # first job in the sequence is the deployment container
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
result = lambda do |job|
|
|
20
20
|
prefix = "#{job.number}="
|
|
21
21
|
return prefix + 'running' if job.result.nil?
|
|
22
22
|
return prefix + 'ok' if job.result == 0
|