diff --git a/Jenkinsfile b/Jenkinsfile index a2ec6e23..e2337a45 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,12 @@ pipeline { agent any stages { + stage('Environment') { + steps { + sh 'conan profile update settings.compiler.libcxx=libstdc++11 default' + sh 'conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan' + } + } stage('Build') { steps { sh 'make conan'