mirror of
https://github.com/antos-rde/antos.git
synced 2024-12-27 22:18:22 +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 {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
node { label'master' }
|
node { label'workstation' }
|
||||||
}
|
}
|
||||||
options {
|
options {
|
||||||
// Limit build history with buildDiscarder option:
|
// Limit build history with buildDiscarder option:
|
||||||
@ -21,9 +21,6 @@ pipeline {
|
|||||||
stages
|
stages
|
||||||
{
|
{
|
||||||
stage('Prepare dependencies') {
|
stage('Prepare dependencies') {
|
||||||
agent {
|
|
||||||
node { label'workstation' }
|
|
||||||
}
|
|
||||||
steps {
|
steps {
|
||||||
sh'''
|
sh'''
|
||||||
cd antd/luasocket && git stash || true
|
cd antd/luasocket && git stash || true
|
||||||
@ -90,9 +87,6 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Checking build)') {
|
stage('Checking build)') {
|
||||||
agent {
|
|
||||||
node { label'workstation' }
|
|
||||||
}
|
|
||||||
steps {
|
steps {
|
||||||
sh'''
|
sh'''
|
||||||
./scripts/ckarch.sh build
|
./scripts/ckarch.sh build
|
||||||
@ -100,9 +94,6 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build docker') {
|
stage('Build docker') {
|
||||||
agent {
|
|
||||||
node { label'workstation' }
|
|
||||||
}
|
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
if (env.TAG_NAME) {
|
if (env.TAG_NAME) {
|
||||||
|
Loading…
Reference in New Issue
Block a user