boxci 0.0.33 → 0.0.34

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1bdd7f7f61f997c39fc4aca33b7e3b624ceabf79
4
- data.tar.gz: 39e9c49f9dfc17bdf7b0a8b4ea839c133c2b497b
3
+ metadata.gz: 272f3c122efafead1fd5a4ba9a5865307e544c65
4
+ data.tar.gz: bc2b69a426f9876bdb73ef900783170d2d9c17b5
5
5
  SHA512:
6
- metadata.gz: 6ccafee1d33627321805bcf836c39d124dba4b6e05a49dfb4a663b202deb99c7c5c6724151750458e1459d8b8bc7c2da65193e1e7c5f83937316c0fac6bcc448
7
- data.tar.gz: 9cbfbb6a10119cf0726501993d4fb9abd60b3b7755d58a281937073b755277d100751e8983cdeb72e16d4f53e07dd05045e3d4e42367bd0e25d1a60a4760fb7a
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
@@ -1,3 +1,3 @@
1
1
  module Boxci
2
- VERSION = "0.0.33"
2
+ VERSION = "0.0.34"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxci
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.33
4
+ version: 0.0.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew De Ponte