Skip to content

Commit

Permalink
Switch over Jenkins labels to linux-amd64 (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
andytson-inviqa authored Jul 6, 2022
1 parent adfb1b2 commit 5b980c7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,59 +8,59 @@ pipeline {
stage('Test Matrix') {
parallel {
stage('(go=1.16 mode=production)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test production 1.16' }
}
stage('(go=1.16 mode=develop-with-mysql)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-mysql 1.16' }
}
stage('(go=1.16 mode=develop-with-postgres)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-postgres 1.16' }
}
stage('(go=1.16 mode=develop-with-kafka)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-kafka 1.16' }
}
stage('(go=1.17 mode=production)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test production 1.17' }
}
stage('(go=1.17 mode=production-multiplatform)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test production-multiplatform 1.17' }
}
stage('(go=1.17 mode=develop-with-mysql)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-mysql 1.17' }
}
stage('(go=1.17 mode=develop-with-postgres)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-postgres 1.17' }
}
stage('(go=1.17 mode=develop-with-kafka)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-kafka 1.17' }
}
stage('(go=1.18 mode=production)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test production 1.18' }
}
stage('(go=1.18 mode=production-multiplatform)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test production-multiplatform 1.18' }
}
stage('(go=1.18 mode=develop-with-mysql)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-mysql 1.18' }
}
stage('(go=1.18 mode=develop-with-postgres)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-postgres 1.18' }
}
stage('(go=1.18 mode=develop-with-kafka)') {
agent { label "my127ws" }
agent { label 'linux-amd64' }
steps { sh './test develop-with-kafka 1.18' }
}
}
Expand Down
2 changes: 1 addition & 1 deletion application/overlay/Jenkinsfile.twig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pipeline {
agent { label "my127ws" }
agent { label 'linux-amd64' }
environment {
MY127WS_KEY = credentials('{{ @('jenkins.credentials.my127ws_key') }}')
MY127WS_ENV = "pipeline"
Expand Down

0 comments on commit 5b980c7

Please sign in to comment.