mirror of
https://github.com/antos-rde/antos.git
synced 2024-11-08 06:28:25 +01:00
fix: dont use the master node
This commit is contained in:
parent
637a6c39f3
commit
3c7afca22a
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -1,6 +1,6 @@
|
||||
pipeline {
|
||||
agent {
|
||||
node { label'master' }
|
||||
node { label'workstation' }
|
||||
}
|
||||
options {
|
||||
// Limit build history with buildDiscarder option:
|
||||
@ -21,9 +21,6 @@ pipeline {
|
||||
stages
|
||||
{
|
||||
stage('Prepare dependencies') {
|
||||
agent {
|
||||
node { label'workstation' }
|
||||
}
|
||||
steps {
|
||||
sh'''
|
||||
cd antd/luasocket && git stash || true
|
||||
@ -90,9 +87,6 @@ pipeline {
|
||||
}
|
||||
}
|
||||
stage('Checking build)') {
|
||||
agent {
|
||||
node { label'workstation' }
|
||||
}
|
||||
steps {
|
||||
sh'''
|
||||
./scripts/ckarch.sh build
|
||||
@ -100,9 +94,6 @@ pipeline {
|
||||
}
|
||||
}
|
||||
stage('Build docker') {
|
||||
agent {
|
||||
node { label'workstation' }
|
||||
}
|
||||
steps {
|
||||
script {
|
||||
if (env.TAG_NAME) {
|
||||
|
Loading…
Reference in New Issue
Block a user