Salt
a4cde53a63
Some checks failed
Git Desu/9iron/pipeline/head There was a failure building this commit
20 lines
206 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|