mirror of
https://github.com/status-im/status-go.git
synced 2025-02-01 17:38:36 +00:00
Use linux node in Jenkinsfile (#340)
In order to move some load from Jenkins master, let's build status-go on linux node.
This commit is contained in:
parent
ca4bc5152f
commit
78fb5e963f
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -9,7 +9,7 @@ def getVersion(branch, sha) {
|
||||
return branch.replaceAll(/\//, '-')
|
||||
}
|
||||
|
||||
node {
|
||||
node('linux') {
|
||||
checkout scm
|
||||
|
||||
def remoteOriginRegex = ~/^remotes\/origin\//
|
||||
|
@ -13,7 +13,7 @@ WS1="$ROOT/build/_workspace/deps"
|
||||
WS2="$ROOT/build/_workspace/project"
|
||||
|
||||
# expose all vendored packages
|
||||
if [ ! -d "$WS1/src" ]; then
|
||||
if [ ! -L "$WS1/src" ]; then
|
||||
mkdir -p "$WS1"
|
||||
cd "$WS1"
|
||||
ln -s "$ROOT/vendor" src
|
||||
|
Loading…
x
Reference in New Issue
Block a user