boxci 0.0.31 → 0.0.32
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 +6 -0
- data/lib/boxci/tester.rb +0 -6
- 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: 1b1d456bdd627be3796a9c7af9724710c63ec4e8
|
|
4
|
+
data.tar.gz: 325efc85366988512045e09c0385d44a527f229e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4f494e6903765561d4a9350beed2adb4214eb8d90ab91c348a3506c35ba67d37eef6be90aa6494b10296d150fb4947f51c0e0b8e2c31ec90d57c303c0920ec2
|
|
7
|
+
data.tar.gz: 90344c2b93929ccacbc39e2515d156f1d13f9237617088c2799b772a00f44f7e6dd53f32440efb1699953e473f96789573872d24ebcd2a155bdd820c0015a839
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ versions as well as provide a rough history.
|
|
|
6
6
|
|
|
7
7
|
#### Next Release
|
|
8
8
|
|
|
9
|
+
#### v0.0.32
|
|
10
|
+
|
|
11
|
+
- It should now add dummy boxes for various providers.
|
|
12
|
+
|
|
13
|
+
#### v0.0.31
|
|
14
|
+
|
|
9
15
|
- Fix issue #31 so that it auto installs vagrant plugins without prompting the
|
|
10
16
|
user. This will allow it to work in non-interactive environments like other
|
|
11
17
|
CI systems (Bamboo, etc.)
|
data/lib/boxci/tester.rb
CHANGED
|
@@ -150,12 +150,6 @@ module Boxci
|
|
|
150
150
|
def add_provider_box
|
|
151
151
|
dummy_box_url = @provider_object.dummy_box_url
|
|
152
152
|
if dummy_box_url
|
|
153
|
-
if run "curl --output /dev/null --silent --head --fail #{dummy_box_url}"
|
|
154
|
-
say "Using specified VM Box URL", :green
|
|
155
|
-
else
|
|
156
|
-
say "Could not resolve the Box URL: #{dummy_box_url}", :red
|
|
157
|
-
end
|
|
158
|
-
else
|
|
159
153
|
inside @project_workspace_folder do
|
|
160
154
|
# check for box
|
|
161
155
|
if !system("vagrant box list | grep dummy | grep -q \"(#{provider})\"")
|
data/lib/boxci/version.rb
CHANGED