Files
Andrey Bychkov 9d57df6c8b
All checks were successful
SHS Gitea/raspberry-pi-pico-docker-sdk/pipeline/head This commit looks good
add Jenkinsfile
2024-02-04 21:42:25 +03:00

14 lines
208 B
Groovy

node {
stage("Download SRC") {
checkout scm
}
stage("Docker build") {
docker.build("${env.DOCKER_PREFIX}/picosdk", ".")
}
stage("docker prune") {
sh 'docker system prune -f'
}
}