htmxui/Jenkinsfile

22 lines
296 B
Plaintext
Raw Normal View History

2024-10-19 01:49:16 +00:00
pipeline {
agent {
docker {
reuseNode true
image 'rust:1-alpine'
}
}
stages {
stage('Build release binary') {
steps {
sh 'cargo build --release'
}
}
stage('Profit') {
steps {
sh 'docker-compose down || true'
sh 'docker-compose up -d --build'
}
}
}
}