Skip to content

Commit cbb5deb

Browse files
authored
Merge pull request #4114 from xianyi/jenkins
Add Jenkins configuration files for OSUOSL powerci and ibmz-ci
2 parents e14a025 + f7b9160 commit cbb5deb

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

Jenkinsfile

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
node {
2-
stage('Checkout') {
3-
checkout
1+
pipeline {
2+
agent {
3+
docker {
4+
image 'osuosl/ubuntu-s390x'
45
}
5-
6+
}
7+
stages {
68
stage('Build') {
7-
sh("make")
9+
steps {
10+
sh 'make'
11+
}
812
}
13+
}
914
}

Jenkinsfile.pwr

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
pipeline {
2+
agent {
3+
docker {
4+
image 'osuosl/ubuntu-ppc64le'
5+
}
6+
}
7+
stages {
8+
stage('Build') {
9+
steps {
10+
sh 'sudo apt update'
11+
sh 'sudo apt install gfortran -y'
12+
sh 'make'
13+
}
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)