You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
pipeline { |
|
agent none |
|
stages { |
|
stage('build') { |
|
parallel { |
|
|
|
stage('build') { |
|
agent { |
|
docker { |
|
image 'px4io/px4-dev-base:2017-12-30' |
|
args '-e CI=true -e CCACHE_BASEDIR=$WORKSPACE -e CCACHE_DIR=/tmp/ccache -v /tmp/ccache:/tmp/ccache:rw' |
|
} |
|
} |
|
steps { |
|
sh 'git clean -ff -x -d .' |
|
sh 'git submodule deinit -f .' |
|
sh 'git submodule update --init --recursive' |
|
sh './build.sh' |
|
} |
|
} |
|
|
|
stage('build clang') { |
|
agent { |
|
docker { |
|
image 'px4io/px4-dev-clang:2017-12-30' |
|
args '-e CI=true -e CCACHE_BASEDIR=$WORKSPACE -e CCACHE_DIR=/tmp/ccache -v /tmp/ccache:/tmp/ccache:rw' |
|
} |
|
|
|
} |
|
steps { |
|
sh 'git clean -ff -x -d .' |
|
sh 'git submodule deinit -f .' |
|
sh 'git submodule update --init --recursive' |
|
sh 'CC=clang CXX=clang++ ./build.sh' |
|
} |
|
} |
|
|
|
stage('pytest') { |
|
agent { |
|
docker { |
|
image 'px4io/px4-dev-ecl' |
|
args '-e CI=true -e CCACHE_BASEDIR=$WORKSPACE -e CCACHE_DIR=/tmp/ccache -v /tmp/ccache:/tmp/ccache:rw' |
|
} |
|
} |
|
steps { |
|
sh 'git clean -ff -x -d .' |
|
sh 'git submodule deinit -f .' |
|
sh 'git submodule update --init --recursive' |
|
//sh 'RUN_PYTEST=1 ./build.sh' |
|
sh './build.sh' |
|
} |
|
} |
|
|
|
} |
|
} |
|
} |
|
}
|
|
|