„Jenkinsfile“ ändern

This commit is contained in:
Stanislaw Kaushanski 2020-06-23 18:24:55 +02:00
parent 744db33d41
commit 3cdc7431ad
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -46,8 +46,8 @@ void build_hifive_without_scv() {
try { try {
sh("conan profile new default --detect --force") sh("conan profile new default --detect --force")
sh("conan profile update settings.compiler.libcxx=libstdc++11 default") sh("conan profile update settings.compiler.libcxx=libstdc++11 default")
sh("conan remote add minres https://api.bintray.com/conan/minres/conan-repo") sh("conan remote add minres https://api.bintray.com/conan/minres/conan-repo --force")
sh("conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan") sh("conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan --force")
} }
catch (exc) { catch (exc) {
echo 'Conan configured' echo 'Conan configured'
@ -72,7 +72,7 @@ pipeline {
stages { stages {
stage('HiFive-VP pipeline') { stage('HiFive-VP pipeline') {
parallel { parallel {
stage('ubuntu/18.04'){ stage('ubuntu'){
agent {docker { image 'ubuntu-18.04' } } agent {docker { image 'ubuntu-18.04' } }
stages { stages {
stage('Checkout on Ubuntu') { stage('Checkout on Ubuntu') {
@ -87,7 +87,7 @@ pipeline {
} }
} }
} }
stage('Fedora/28'){ stage('Fedora28'){
agent {docker { image 'fedora28' } } agent {docker { image 'fedora28' } }
stages { stages {
stage('Checkout on Fedora') { stage('Checkout on Fedora') {
@ -102,7 +102,7 @@ pipeline {
} }
} }
} }
stage('Build without SCV'){ stage('No SCV'){
agent {docker { image 'ubuntu-18.04' } } agent {docker { image 'ubuntu-18.04' } }
stages { stages {
stage('Checkout on Ubuntu') { stage('Checkout on Ubuntu') {