evrone-ci-message 0.2.0.pre6 → 0.2.0.pre7
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/lib/evrone/ci/message/messages.pb.rb +2 -2
- data/lib/evrone/ci/message/version.rb +1 -1
- data/proto/messages.proto +10 -10
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3284a435abd9be617a76d4c0b7909ee65153d938
|
|
4
|
+
data.tar.gz: 4dd5af072316e6c02200edced1cfd443987ec936
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d056d3615570bfd1a591f14b281886cef5cbca40a60d371090e9ae6cc477b834428c88a1dadb51ae41eb9678b0287d244fe413dba5332ee4a001a06804d7b6f8
|
|
7
|
+
data.tar.gz: ca50dcb0a8bceb2cc35ffb5d37e2f7e390e8dd5ad353bd2cab8d24f87f608ecb4e8f28da9e54e80d2e206782882527ef0bd955bc9c95ed213c336740f1d4d8c8
|
|
@@ -58,7 +58,7 @@ module Evrone
|
|
|
58
58
|
include Beefcake::Message
|
|
59
59
|
|
|
60
60
|
module Status
|
|
61
|
-
|
|
61
|
+
INITIALIZED = 0
|
|
62
62
|
STARTED = 2
|
|
63
63
|
FINISHED = 3
|
|
64
64
|
BROKEN = 4
|
|
@@ -76,7 +76,7 @@ module Evrone
|
|
|
76
76
|
include Beefcake::Message
|
|
77
77
|
|
|
78
78
|
module Status
|
|
79
|
-
|
|
79
|
+
INITIALIZED = 0
|
|
80
80
|
STARTED = 2
|
|
81
81
|
FINISHED = 3
|
|
82
82
|
BROKEN = 4
|
data/proto/messages.proto
CHANGED
|
@@ -35,11 +35,11 @@ message JobLog {
|
|
|
35
35
|
|
|
36
36
|
message BuildStatus {
|
|
37
37
|
enum Status {
|
|
38
|
-
|
|
39
|
-
STARTED
|
|
40
|
-
FINISHED
|
|
41
|
-
BROKEN
|
|
42
|
-
FAILED
|
|
38
|
+
INITIALIZED = 0;
|
|
39
|
+
STARTED = 2;
|
|
40
|
+
FINISHED = 3;
|
|
41
|
+
BROKEN = 4;
|
|
42
|
+
FAILED = 5;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
required uint64 build_id = 1;
|
|
@@ -50,11 +50,11 @@ message BuildStatus {
|
|
|
50
50
|
|
|
51
51
|
message JobStatus {
|
|
52
52
|
enum Status {
|
|
53
|
-
|
|
54
|
-
STARTED
|
|
55
|
-
FINISHED
|
|
56
|
-
BROKEN
|
|
57
|
-
FAILED
|
|
53
|
+
INITIALIZED = 0;
|
|
54
|
+
STARTED = 2;
|
|
55
|
+
FINISHED = 3;
|
|
56
|
+
BROKEN = 4;
|
|
57
|
+
FAILED = 5;
|
|
58
58
|
}
|
|
59
59
|
required uint64 build_id = 1;
|
|
60
60
|
required uint64 job_id = 2;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: evrone-ci-message
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.0.
|
|
4
|
+
version: 0.2.0.pre7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dmitry Galinsky
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: beefcake
|
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
109
|
version: 1.3.1
|
|
110
110
|
requirements: []
|
|
111
111
|
rubyforge_project:
|
|
112
|
-
rubygems_version: 2.
|
|
112
|
+
rubygems_version: 2.1.9
|
|
113
113
|
signing_key:
|
|
114
114
|
specification_version: 4
|
|
115
115
|
summary: Evrone CI message
|