adding jenkinsfile
This commit is contained in:
parent
2be33dc549
commit
c049b8ea95
39
.jenkins/jenkinsfile
Normal file
39
.jenkins/jenkinsfile
Normal file
@ -0,0 +1,39 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Build Python Env') {
|
||||
steps {
|
||||
sh 'poetry install'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build Javascript') {
|
||||
steps {
|
||||
sh 'npm ci'
|
||||
sh 'npm run build --if-present'
|
||||
}
|
||||
}
|
||||
// stage('Test') {
|
||||
// steps {
|
||||
// dotnetTest project: "Selector.Core.sln"
|
||||
// }
|
||||
// }
|
||||
stage('Deploy') {
|
||||
when { branch 'master' }
|
||||
steps {
|
||||
script {
|
||||
docker.withRegistry('https://git.sarsoo.xyz', 'git-registry-creds') {
|
||||
|
||||
docker.build("sarsoo/mixonomer:latest").push()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
cleanWs()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user