boxci 0.0.33 → 0.0.34
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/boxci/tester.rb +3 -3
- data/lib/boxci/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: 272f3c122efafead1fd5a4ba9a5865307e544c65
|
4
|
+
data.tar.gz: bc2b69a426f9876bdb73ef900783170d2d9c17b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3766f7a57d1de371bbe1aaf2dfa3cfb7fd054b7598f500c0172d494beca7a8a76466908e90c8e0af93c8daf35ff1ae8d2425b3f003edd5101b6f1eda95b2e584
|
7
|
+
data.tar.gz: b70901724b14d81b50a3e1494f2dc6ad6cf3572dfbcee68daafb8a77a9898e5fd0f4e99937a7e298e7f9b9016cff66ac4583597bca9bd198f18485ce1644b85b
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,11 @@ versions as well as provide a rough history.
|
|
6
6
|
|
7
7
|
#### Next Release
|
8
8
|
|
9
|
+
#### v0.0.34
|
10
|
+
|
11
|
+
- Disable cleanup for testing purposes, will have to do manual cleanup until
|
12
|
+
it is re-enabled.
|
13
|
+
|
9
14
|
#### v0.0.33
|
10
15
|
|
11
16
|
- Add `VAGRANT_LOG=debug` to `vagrant up` and `vagrant ssh-config` commands to
|
data/lib/boxci/tester.rb
CHANGED
@@ -26,7 +26,7 @@ module Boxci
|
|
26
26
|
File.open('/tmp/boxci.log', 'a+') { |f| f.write("Got SIGTERM, going to cleanup...\n") }
|
27
27
|
|
28
28
|
begin
|
29
|
-
cleanup
|
29
|
+
# cleanup
|
30
30
|
rescue Errno::EPIPE => e
|
31
31
|
File.open('/tmp/boxci.log', 'a+') { |f| f.write("SIGTERM handler swallowed Errno::EPIPE exception\n") }
|
32
32
|
rescue => e
|
@@ -44,7 +44,7 @@ module Boxci
|
|
44
44
|
end
|
45
45
|
|
46
46
|
Signal.trap('SIGINT') do
|
47
|
-
cleanup
|
47
|
+
# cleanup
|
48
48
|
exit 255
|
49
49
|
end
|
50
50
|
|
@@ -81,7 +81,7 @@ module Boxci
|
|
81
81
|
f.write("test() method swallowed Errno::EPIPE exception\n")
|
82
82
|
end
|
83
83
|
ensure
|
84
|
-
cleanup
|
84
|
+
# cleanup
|
85
85
|
end
|
86
86
|
|
87
87
|
exit @tester_exit_code
|
data/lib/boxci/version.rb
CHANGED