vx-builder 0.5.21 → 0.5.22
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/lib/vx/builder/script_builder/nodejs.rb +4 -0
- data/lib/vx/builder/version.rb +1 -1
- data/spec/fixtures/integration/go/language/after_script.sh +1 -0
- data/spec/fixtures/integration/go/language/before_script.sh +1 -0
- data/spec/fixtures/integration/ruby/deploy/after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/deploy/before_script.sh +1 -0
- data/spec/fixtures/integration/ruby/language/after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/language/before_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/0.after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/0.before_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/1.after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/1.before_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/d.after_script.sh +1 -0
- data/spec/fixtures/integration/ruby/matrix/d.before_script.sh +1 -0
- 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: 4f6aa70857f1031723db165379a07d6fd564b92b
|
|
4
|
+
data.tar.gz: 31c5d99172bb0ce0c8ae69a50ccce618664a01a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bebe2946be5aee6f722d0157b3d65430ce9db24db83220d287623e7ea9c2fe4cffedcedc43f74693edf797fcd7741afca1ea840c9cd040ed42a04e63d844377c
|
|
7
|
+
data.tar.gz: b1ee83c13f3943c1a717c94a9e5486119cd0aeaa43823c8c6817e3e957c5e9ef44810c9fc8ae3ceba611a583d2602e0da5236f57a8a03ad7ad3d15748548e35d
|
|
@@ -6,6 +6,7 @@ module Vx
|
|
|
6
6
|
|
|
7
7
|
DEFAULT_NODE = '0.10'
|
|
8
8
|
NPM_PACKAGES = '~/.npm-packages'
|
|
9
|
+
BOWER_COMPONENTS = '~/.bower_components'
|
|
9
10
|
|
|
10
11
|
def call(env)
|
|
11
12
|
if enabled?(env)
|
|
@@ -31,12 +32,15 @@ module Vx
|
|
|
31
32
|
|
|
32
33
|
do_before_install(env) do |i|
|
|
33
34
|
i << "mkdir -p #{NPM_PACKAGES}"
|
|
35
|
+
i << "mkdir -p #{BOWER_COMPONENTS}"
|
|
34
36
|
i << trace_sh_command("npm config set prefix=#{NPM_PACKAGES}")
|
|
37
|
+
i << trace_sh_command("export bower_directory=#{BOWER_COMPONENTS}")
|
|
35
38
|
i << "export PATH=$PATH:#{NPM_PACKAGES}/bin"
|
|
36
39
|
end
|
|
37
40
|
|
|
38
41
|
do_cached_directories(env) do |i|
|
|
39
42
|
i << NPM_PACKAGES
|
|
43
|
+
i << BOWER_COMPONENTS
|
|
40
44
|
end
|
|
41
45
|
end
|
|
42
46
|
|
data/lib/vx/builder/version.rb
CHANGED
|
@@ -7,6 +7,7 @@ export CI_BUILD_ID=12
|
|
|
7
7
|
export CI_BUILD_NUMBER=101
|
|
8
8
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
10
|
+
export DISPLAY=:99
|
|
10
11
|
export CI_BRANCH=test/pull-request
|
|
11
12
|
export VX_ROOT=$(pwd)
|
|
12
13
|
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
|
@@ -11,6 +11,7 @@ export CI_BUILD_ID=12
|
|
|
11
11
|
export CI_BUILD_NUMBER=101
|
|
12
12
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
13
13
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
14
|
+
export DISPLAY=:99
|
|
14
15
|
export CI_BRANCH=test/pull-request
|
|
15
16
|
export VX_ROOT=$(pwd)
|
|
16
17
|
export PATH=$VX_ROOT/bin:$PATH
|
|
@@ -7,6 +7,7 @@ export CI_BUILD_ID=12
|
|
|
7
7
|
export CI_BUILD_NUMBER=101
|
|
8
8
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
10
|
+
export DISPLAY=:99
|
|
10
11
|
export CI_BRANCH=test/pull-request
|
|
11
12
|
export VX_ROOT=$(pwd)
|
|
12
13
|
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
|
@@ -7,6 +7,7 @@ export CI_BUILD_ID=12
|
|
|
7
7
|
export CI_BUILD_NUMBER=101
|
|
8
8
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
10
|
+
export DISPLAY=:99
|
|
10
11
|
export CI_BRANCH=test/pull-request
|
|
11
12
|
export VX_ROOT=$(pwd)
|
|
12
13
|
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
|
@@ -11,6 +11,7 @@ export CI_BUILD_ID=12
|
|
|
11
11
|
export CI_BUILD_NUMBER=101
|
|
12
12
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
13
13
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
14
|
+
export DISPLAY=:99
|
|
14
15
|
export CI_BRANCH=test/pull-request
|
|
15
16
|
export VX_ROOT=$(pwd)
|
|
16
17
|
export PATH=$VX_ROOT/bin:$PATH
|
|
@@ -7,6 +7,7 @@ export CI_BUILD_ID=12
|
|
|
7
7
|
export CI_BUILD_NUMBER=101
|
|
8
8
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
10
|
+
export DISPLAY=:99
|
|
10
11
|
export CI_BRANCH=test/pull-request
|
|
11
12
|
export VX_ROOT=$(pwd)
|
|
12
13
|
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
|
@@ -11,6 +11,7 @@ export CI_BUILD_ID=12
|
|
|
11
11
|
export CI_BUILD_NUMBER=101
|
|
12
12
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
13
13
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
14
|
+
export DISPLAY=:99
|
|
14
15
|
export CI_BRANCH=test/pull-request
|
|
15
16
|
export VX_ROOT=$(pwd)
|
|
16
17
|
export PATH=$VX_ROOT/bin:$PATH
|
|
@@ -7,6 +7,7 @@ export CI_BUILD_ID=12
|
|
|
7
7
|
export CI_BUILD_NUMBER=101
|
|
8
8
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
10
|
+
export DISPLAY=:99
|
|
10
11
|
export CI_BRANCH=test/pull-request
|
|
11
12
|
export VX_ROOT=$(pwd)
|
|
12
13
|
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
|
@@ -11,6 +11,7 @@ export CI_BUILD_ID=12
|
|
|
11
11
|
export CI_BUILD_NUMBER=101
|
|
12
12
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
13
13
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
14
|
+
export DISPLAY=:99
|
|
14
15
|
export CI_BRANCH=test/pull-request
|
|
15
16
|
export VX_ROOT=$(pwd)
|
|
16
17
|
export PATH=$VX_ROOT/bin:$PATH
|
|
@@ -7,6 +7,7 @@ export CI_BUILD_ID=12
|
|
|
7
7
|
export CI_BUILD_NUMBER=101
|
|
8
8
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
9
9
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
10
|
+
export DISPLAY=:99
|
|
10
11
|
export CI_BRANCH=test/pull-request
|
|
11
12
|
export VX_ROOT=$(pwd)
|
|
12
13
|
test -d ${VX_ROOT}/code/vexor/vx-test-repo || exit 1
|
|
@@ -11,6 +11,7 @@ export CI_BUILD_ID=12
|
|
|
11
11
|
export CI_BUILD_NUMBER=101
|
|
12
12
|
export CI_PROJECT_NAME=vexor/vx-test-repo
|
|
13
13
|
export CI_BUILD_SHA=8f53c077072674972e21c82a286acc07fada91f5
|
|
14
|
+
export DISPLAY=:99
|
|
14
15
|
export CI_BRANCH=test/pull-request
|
|
15
16
|
export VX_ROOT=$(pwd)
|
|
16
17
|
export PATH=$VX_ROOT/bin:$PATH
|
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.22
|
|
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-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: vx-common
|