vx-builder 0.5.14 → 0.5.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/vx/builder/build_configuration/env.rb +1 -1
- data/lib/vx/builder/version.rb +1 -1
- data/spec/fixtures/integration/go/language/after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/deploy/after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/language/after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/0.after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/1.after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/d.after_script.sh +1 -0
- data/spec/lib/builder/build_configuration/env_spec.rb +7 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a275805db418f49736cfe836332b23cf6f68e62
|
4
|
+
data.tar.gz: 65f898414b6ad2c592bcea46726869c6e2b8e82f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d5f7cd060576ff9c8003b1435d0bcf8078a5d88f4b785c626c83d74ff3c5867bb48101076d625c5636acddd91fa871544d857293afa236f1fce70342e0555a9
|
7
|
+
data.tar.gz: 6a26b1b9d81a22659598cd4c88d5ca4c519154130146c5a68cdc8710d3a8d3108322007a0ee30974477cb3c34e50ae4bff49b1c5282299ab8032ed050f80f009
|
data/lib/vx/builder/version.rb
CHANGED
@@ -9,6 +9,7 @@ export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
10
10
|
export CI_BRANCH=test/pull-request
|
11
11
|
export VX_ROOT=$(pwd)
|
12
|
+
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
12
13
|
cd ${VX_ROOT}/code/vexor/vx-test-repo
|
13
14
|
|
14
15
|
# after script
|
@@ -9,6 +9,7 @@ export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
10
10
|
export CI_BRANCH=test/pull-request
|
11
11
|
export VX_ROOT=$(pwd)
|
12
|
+
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
12
13
|
cd ${VX_ROOT}/code/vexor/vx-test-repo
|
13
14
|
|
14
15
|
# after script
|
@@ -9,6 +9,7 @@ export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
10
10
|
export CI_BRANCH=test/pull-request
|
11
11
|
export VX_ROOT=$(pwd)
|
12
|
+
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
12
13
|
cd ${VX_ROOT}/code/vexor/vx-test-repo
|
13
14
|
|
14
15
|
# after script
|
@@ -9,6 +9,7 @@ export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
10
10
|
export CI_BRANCH=test/pull-request
|
11
11
|
export VX_ROOT=$(pwd)
|
12
|
+
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
12
13
|
cd ${VX_ROOT}/code/vexor/vx-test-repo
|
13
14
|
|
14
15
|
# after script
|
@@ -9,6 +9,7 @@ export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
10
10
|
export CI_BRANCH=test/pull-request
|
11
11
|
export VX_ROOT=$(pwd)
|
12
|
+
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
12
13
|
cd ${VX_ROOT}/code/vexor/vx-test-repo
|
13
14
|
|
14
15
|
# after script
|
@@ -9,6 +9,7 @@ export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
10
10
|
export CI_BRANCH=test/pull-request
|
11
11
|
export VX_ROOT=$(pwd)
|
12
|
+
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
12
13
|
cd ${VX_ROOT}/code/vexor/vx-test-repo
|
13
14
|
|
14
15
|
# after script
|
@@ -16,13 +16,13 @@ describe Vx::Builder::BuildConfiguration::Env do
|
|
16
16
|
end
|
17
17
|
|
18
18
|
context "when env is array" do
|
19
|
-
let(:params) {
|
19
|
+
let(:params) { %w{foo bar} }
|
20
20
|
its(:matrix) { should eq ['foo', 'bar'] }
|
21
21
|
its(:global) { should eq [] }
|
22
22
|
end
|
23
23
|
|
24
24
|
context "when env is array of one element" do
|
25
|
-
let(:params) { [
|
25
|
+
let(:params) { ["foo"] }
|
26
26
|
its(:matrix) { should eq [] }
|
27
27
|
its(:global) { should eq ['foo'] }
|
28
28
|
end
|
@@ -39,5 +39,10 @@ describe Vx::Builder::BuildConfiguration::Env do
|
|
39
39
|
its(:global) { should eq [] }
|
40
40
|
end
|
41
41
|
|
42
|
+
context "hen env has secure keys" do
|
43
|
+
let(:params) { [{secure: "foo"}] }
|
44
|
+
its(:attributes) { should eq({"global" => [], "matrix" => []}) }
|
45
|
+
end
|
46
|
+
|
42
47
|
end
|
43
48
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vx-builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitry Galinsky
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: vx-common
|