-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathJenkinsfile
More file actions
25 lines (25 loc) · 818 Bytes
/
Jenkinsfile
File metadata and controls
25 lines (25 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pipeline {
agent any
stages {
stage('Build for Debian Wheezy / ARM') {
steps {
sh "sudo docker run --rm -t -e BRANCH=${env.BRANCH_NAME} eblocker-dns-arm:wheezy"
}
}
stage('Build for Debian Jessie / ARM') {
steps {
sh "sudo docker run --rm -t -e BRANCH=${env.BRANCH_NAME} eblocker-dns-arm:jessie"
}
}
stage('Build for Debian Stretch / ARM') {
steps {
sh "sudo docker run --rm -t -e BRANCH=${env.BRANCH_NAME} eblocker-dns-arm:stretch"
}
}
stage('Build for Debian Stretch / AMD64') {
steps {
sh "sudo docker run --rm -t -e BRANCH=${env.BRANCH_NAME} eblocker-dns-amd64:stretch"
}
}
}
}