Browse Source

Add Jenkins configuration files for OSUOSL powerci and ibmz-ci

tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
f7b916076b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 5 deletions
  1. +10
    -5
      Jenkinsfile
  2. +16
    -0
      Jenkinsfile.pwr

+ 10
- 5
Jenkinsfile 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
- 0
Jenkinsfile.pwr 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'
}
}
}
}

Loading…
Cancel
Save