Merge pull request #4114 from xianyi/jenkins

Add Jenkins configuration files for OSUOSL powerci and ibmz-ci
This commit is contained in:
Martin Kroeker 2023-06-29 08:31:06 +02:00 committed by GitHub
commit cbb5deb2cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 5 deletions

15
Jenkinsfile vendored
View File

@ -1,9 +1,14 @@
node { pipeline {
stage('Checkout') { agent {
checkout docker {
image 'osuosl/ubuntu-s390x'
} }
}
stages {
stage('Build') { stage('Build') {
sh("make") steps {
sh 'make'
}
} }
}
} }

16
Jenkinsfile.pwr Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent {
docker {
image 'osuosl/ubuntu-ppc64le'
}
}
stages {
stage('Build') {
steps {
sh 'sudo apt update'
sh 'sudo apt install gfortran -y'
sh 'make'
}
}
}
}