Add Jenkins configuration files for OSUOSL powerci and ibmz-ci
This commit is contained in:
parent
e14a025bb1
commit
f7b916076b
|
@ -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'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue