ci: update jenkinsfile
gitea 2/kompass/pipeline/head This commit looks good Details
gitea/kompass/pipeline/head This commit looks good Details

jenkins
Christian Merten 3 years ago
parent c9c82cafd4
commit 207614a0ac
Signed by: christian.merten
GPG Key ID: D953D69721B948B3

9
Jenkinsfile vendored

@ -1,6 +1,5 @@
node {
checkout scm
/* .. snip .. */
}
pipeline {
@ -9,8 +8,12 @@ pipeline {
stages {
stage('Build') {
steps {
sh "cd docker/development; docker compose build"
sh "make build-test"
}
}
stage('Test') {
steps {
sh "make test"
}
}
}

@ -1,5 +1,5 @@
build-test:
cd docker/test; docker-compose build
cd docker/test; docker compose build
test: build-test
cd docker/test; docker-compose up --abort-on-container-exit
cd docker/test; docker compose up --abort-on-container-exit

Loading…
Cancel
Save