This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Add Jenkins configuration files for OSUOSL powerci and ibmz-ci
tags/v0.3.24
Martin Kroeker
GitHub
2 years ago
parent
e14a025bb1
commit
f7b916076b
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
2 changed files
with
26 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-5
Jenkinsfile
+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'
}
}
}
}
Write
Preview
Loading…
Cancel
Save