Add Jenkins configuration files for OSUOSL powerci and ibmz-ci

This commit is contained in:
Martin Kroeker
2023-06-28 21:30:59 +02:00
committed by GitHub
parent e14a025bb1
commit f7b916076b
2 changed files with 26 additions and 5 deletions

15
Jenkinsfile vendored
View File

@@ -1,9 +1,14 @@
node {
stage('Checkout') {
checkout
pipeline {
agent {
docker {
image 'osuosl/ubuntu-s390x'
}
}
stages {
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'
}
}
}
}