ci: add initial Jenkinsfile
parent
fb3db50ce3
commit
c9c82cafd4
@ -0,0 +1,17 @@
|
|||||||
|
node {
|
||||||
|
checkout scm
|
||||||
|
/* .. snip .. */
|
||||||
|
}
|
||||||
|
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh "cd docker/development; docker compose build"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue