gct 0.3.95 → 0.3.96
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/gct/command/robot/finish.rb +6 -1
- data/lib/gct/gct_version.rb +1 -1
- 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: fc724b7284f83afb5c5b2d1bc1e4056179d5b88e45d39dd375942649f8ad760b
|
|
4
|
+
data.tar.gz: be50780a0fc37a2bc3fcb5bcf2c403cb8addf005f67ebd2d03ef1d5a28883809
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32c305352fa1248ca6587ca5e8e1ef7a2d7bd56bfcf30390e4b769a492f1ef17bffa13df9c3b0c4f3b87bca52ebfaba2b739ccc4b2962a2e4696842943e7479c
|
|
7
|
+
data.tar.gz: 0011f8848cb83ace7603b49cbbc713b905213fbf4a9c837cf5ccfb41419d054423fb62ff7b7e97bad919f85fc2c2685e01cf9fa7c35e3dd346a7f92f3acb8134
|
|
@@ -33,8 +33,13 @@ module Gct
|
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
def run
|
|
36
|
+
puts @build_status.class
|
|
36
37
|
puts "build_status == #{@build_status}"
|
|
37
|
-
|
|
38
|
+
if @build_status.eql?('false')
|
|
39
|
+
build_text = "<font color=\"comment\">CI运行失败</font>,请相关人员注意"
|
|
40
|
+
elsif @build_status.eql?('true')
|
|
41
|
+
build_text = "<font color=\"info\">CI运行成功</font>"
|
|
42
|
+
end
|
|
38
43
|
ci_text = "[点击跳转](#{@ci_url})"
|
|
39
44
|
|
|
40
45
|
if @test
|
data/lib/gct/gct_version.rb
CHANGED