Skip to content

Commit

Permalink
Merge pull request #142 from bilke/frontend2
Browse files Browse the repository at this point in the history
Migrate to frontend2
  • Loading branch information
wenqing authored May 28, 2019
2 parents af9c4b5 + 980f6d0 commit 883abec
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

pipeline {
agent none
options {
ansiColor('xterm')
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10'))
timeout(time: 3, unit: 'HOURS')
}
stages {
stage('Parallel Stage') {
parallel {
Expand Down Expand Up @@ -32,7 +38,7 @@ pipeline {
}
}
stage('Linux-FEM') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script {
ogs5BuildLinux {
Expand All @@ -48,7 +54,7 @@ pipeline {
}
}
stage('Linux-SP') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="SP" } }
}
Expand All @@ -58,7 +64,7 @@ pipeline {
}
}
stage('Linux-GEMS') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="GEMS" } }
}
Expand All @@ -70,7 +76,7 @@ pipeline {
}
}
stage('Linux-PQC') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="PQC" } }
}
Expand All @@ -80,7 +86,7 @@ pipeline {
}
}
stage('Linux-IPQC') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="IPQC" } }
}
Expand All @@ -90,7 +96,7 @@ pipeline {
}
}
stage('Linux-BRNS') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="BRNS" } }
}
Expand All @@ -102,7 +108,7 @@ pipeline {
}
}
stage('Linux-MKL') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux {
config="MKL"
Expand All @@ -115,7 +121,7 @@ pipeline {
}
}
stage('Linux-LIS') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="LIS" } }
}
Expand All @@ -127,7 +133,7 @@ pipeline {
}
}
stage('Linux-MPI') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="MPI" } }
}
Expand All @@ -137,7 +143,7 @@ pipeline {
}
}
stage('Linux-PETSC') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="PETSC" } }
}
Expand All @@ -149,7 +155,7 @@ pipeline {
}
}
stage('Linux-PETSC_GEMS') {
agent { label 'envinf1' }
agent { label 'frontend2' }
steps {
script { ogs5BuildLinux { config="PETSC_GEMS" } }
}
Expand Down

0 comments on commit 883abec

Please sign in to comment.