Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit ec966d5

Browse files
committed
Add Jenkinsfile
Signed-off-by: Christopher Crone <[email protected]>
1 parent 1576481 commit ec966d5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Jenkinsfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
node('gcp-linux-worker-0') {
2+
stage('Build') {
3+
dir('src/github.com/docker/lunchbox') {
4+
checkout scm
5+
sh 'docker image prune -f'
6+
sh 'make ci-lint'
7+
sh 'make ci-test'
8+
sh 'make ci-bin-linux'
9+
sh 'make ci-bin-darwin'
10+
sh 'make ci-bin-windows'
11+
archiveArtifacts '*.tar.gz'
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)