fix: dont use the master node
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
gitea-sync/antos/pipeline/tag This commit looks good

This commit is contained in:
DanyLE 2024-03-11 00:35:04 +01:00
parent 637a6c39f3
commit 3c7afca22a

11
Jenkinsfile vendored
View File

@ -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) {