9iron/Jenkinsfile
Salt a4cde53a63
Some checks failed
Git Desu/9iron/pipeline/head There was a failure building this commit
Switch to a Docker agent (hopefully)
2022-01-23 08:46:34 -06:00

20 lines
206 B
Groovy

pipeline {
agent {
docker {
image 'morlay/buildx:607a2ce'
}
}
stages {
stage('Build') {
steps {
echo 'BUILD'
}
}
stage('Build Tag') {
steps {
echo 'BUILD TAG'
}
}
}
}