Skip to content

Commit

Permalink
Create Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbeaudry committed Nov 4, 2022
1 parent f75cbab commit fc08681
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('build') {
when {
not {
buildingTag()
}
}
steps {
sh '/.mounts/labs/gsi/vidarr/jenkins-ci-wrapper test -t /.mounts/labs/gsi/vidarr/testing-config.json'
}
}
stage('Deploy') {
when {
buildingTag()
}
steps {
sh '/.mounts/labs/gsi/vidarr/jenkins-ci-wrapper deploy -v $TAG_NAME -t /.mounts/labs/gsi/vidarr/testing-config.json -U /.mounts/labs/gsi/vidarr/deploy-urls'
}
}
}
}

0 comments on commit fc08681

Please sign in to comment.