Browse Source
Merge pull request #4114 from xianyi/jenkins
Add Jenkins configuration files for OSUOSL powerci and ibmz-ci
tags/v0.3.24
Martin Kroeker
GitHub
2 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
26 additions and
5 deletions
-
Jenkinsfile
-
Jenkinsfile.pwr
|
|
|
@@ -1,9 +1,14 @@ |
|
|
|
node { |
|
|
|
stage('Checkout') { |
|
|
|
checkout |
|
|
|
pipeline { |
|
|
|
agent { |
|
|
|
docker { |
|
|
|
image 'osuosl/ubuntu-s390x' |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
stages { |
|
|
|
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' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |