boxci 0.0.34 → 0.0.35

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: 272f3c122efafead1fd5a4ba9a5865307e544c65
4
- data.tar.gz: bc2b69a426f9876bdb73ef900783170d2d9c17b5
3
+ metadata.gz: 2bb76f1b84f8c9a1d6732820b4d1ac29bb4fa7ac
4
+ data.tar.gz: cf45a1053b411c0c268c7ca4f41fada6d4e7a417
5
5
  SHA512:
6
- metadata.gz: 3766f7a57d1de371bbe1aaf2dfa3cfb7fd054b7598f500c0172d494beca7a8a76466908e90c8e0af93c8daf35ff1ae8d2425b3f003edd5101b6f1eda95b2e584
7
- data.tar.gz: b70901724b14d81b50a3e1494f2dc6ad6cf3572dfbcee68daafb8a77a9898e5fd0f4e99937a7e298e7f9b9016cff66ac4583597bca9bd198f18485ce1644b85b
6
+ metadata.gz: 8d10103a27a7c5d2ee3a8f927ec329c890947cef22f45babdad98263f704ac1037b25d7530293d1ac370c6a0d35f695446328f1953e8976fe1883f3e633687ca
7
+ data.tar.gz: 0b138e117b64de7cc6cd5007a276f317ebfbf3432660d5d06e3791ccd12160f04ee091a2b431858e915bba439f91fe099189b59d72939986acab4c4f6b86f6c2
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.35
10
+
11
+ - Added command success detection and debugging in hopes to better identify
12
+ what is happening in external systems such as Bamboo.
13
+
9
14
  #### v0.0.34
10
15
 
11
16
  - Disable cleanup for testing purposes, will have to do manual cleanup until
data/lib/boxci/tester.rb CHANGED
@@ -67,8 +67,14 @@ module Boxci
67
67
  install_vagrant_plugin
68
68
  add_provider_box
69
69
  end
70
- spin_up_box
71
- setup_ssh_config
70
+ if !spin_up_box
71
+ say "ERROR: Failed to spin up box", :red
72
+ exit 1
73
+ end
74
+ if !setup_ssh_config
75
+ say "ERROR: Failed to setup ssh config", :red
76
+ exit 1
77
+ end
72
78
  install_puppet_on_box
73
79
  provision_box
74
80
  create_artifact_directory
data/lib/boxci/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Boxci
2
- VERSION = "0.0.34"
2
+ VERSION = "0.0.35"
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.34
4
+ version: 0.0.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew De Ponte