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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/boxci/tester.rb +8 -2
- 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: 2bb76f1b84f8c9a1d6732820b4d1ac29bb4fa7ac
|
|
4
|
+
data.tar.gz: cf45a1053b411c0c268c7ca4f41fada6d4e7a417
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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