summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2017-08-11 17:28:27 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2017-08-29 10:28:54 +0200
commit20e0299ec73dabe1b4936ae10eab5bc61b185fe2 (patch)
tree330e1ca2695a2706110196b90be1f6736dcc97c5
parent1759e1d0e983d8ff707e42ebce0f1a264fcf2d82 (diff)
downloadefl-devs/stefan/travis.tar.gz
ci: try if two pipelines in one file will work for jenkinsdevs/stefan/travis
-rw-r--r--.ci/Jenkinsfile50
1 files changed, 33 insertions, 17 deletions
diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile
index 308c71e21b..01278e789f 100644
--- a/.ci/Jenkinsfile
+++ b/.ci/Jenkinsfile
@@ -8,9 +8,41 @@
//e5-build-gentoo-x86_64-1
pipeline {
- agent none
+ agent any
stages {
+ stage('Build x86_64 GCC') {
+ agent {
+ label 'e5-build-gentoo-x86_64-1'
+ }
+ steps {
+ sh '.ci/ci-linux-build.sh'
+ }
+ }
+ }
+}
+
+pipeline {
+ agent any
+
+ stages {
+ stage('Build x86 GCC') {
+ agent {
+ label 'e5-build-gentoo-x86-1'
+ }
+ steps {
+ sh '.ci/ci-linux-build.sh'
+ }
+ }
+ }
+}
+
+
+
+
+
+
+ /* stages {
stage('Build misc') {
agent any
steps {
@@ -26,22 +58,6 @@ pipeline {
}
}
}
-/* stage('Build x86 GCC') {
- agent {
- label 'e5-build-gentoo-x86-1'
- }
- steps {
- sh '.ci/ci-linux-build.sh'
- }
- }
- stage('Build x86_64 GCC') {
- agent {
- label 'e5-build-gentoo-x86_64-1'
- }
- steps {
- sh '.ci/ci-linux-build.sh'
- }
- }
stage('Build x86 Clang') {
agent {
label 'e5-build-gentoo-x86-1'