9iron/Jenkinsfile

20 lines
206 B
Plaintext
Raw Permalink Normal View History

2022-01-22 15:25:03 -06:00
pipeline {
2022-01-23 08:46:34 -06:00
agent {
docker {
image 'morlay/buildx:607a2ce'
}
}
2022-01-22 15:25:03 -06:00
stages {
stage('Build') {
2022-01-22 15:28:24 -06:00
steps {
echo 'BUILD'
}
2022-01-22 15:25:03 -06:00
}
stage('Build Tag') {
2022-01-22 15:28:24 -06:00
steps {
echo 'BUILD TAG'
}
2022-01-22 15:25:03 -06:00
}
}
}