We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e14a025 + f7b9160 commit cbb5debCopy full SHA for cbb5deb
2 files changed
Jenkinsfile
@@ -1,9 +1,14 @@
1
-node {
2
- stage('Checkout') {
3
- checkout
+pipeline {
+ agent {
+ docker {
4
+ image 'osuosl/ubuntu-s390x'
5
}
-
6
+ }
7
+ stages {
8
stage('Build') {
- sh("make")
9
+ steps {
10
+ sh 'make'
11
12
13
14
Jenkinsfile.pwr
@@ -0,0 +1,16 @@
+ image 'osuosl/ubuntu-ppc64le'
+ stage('Build') {
+ sh 'sudo apt update'
+ sh 'sudo apt install gfortran -y'
15
16
+}
0 commit comments