| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #!groovy
- //
- // We now run the tests in Debug mode so that ASSERTs are triggered.
- // Ideally we should run the tests in both Debug and Release so we catch
- // all possible error combinations.
- // See also the top comment in syncenginetestutils.h
- //
- node('CLIENT') {
- stage 'Checkout'
- checkout scm
- sh '''git submodule update --init'''
- stage 'Qt5'
- sh '''rm -rf build
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE="Debug" -DUNIT_TESTING=1 -DWITH_TESTING=1 -DCMAKE_PREFIX_PATH=/var/lib/jenkins/qt/5.6.2 ..
- make -j4
- ctest -V --output-on-failure'''
- stage 'Qt5 - clang'
- sh '''rm -rf build
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE="Debug" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DWITH_TESTING=1 -DCMAKE_PREFIX_PATH=/var/lib/jenkins/qt/5.6.2 ..
- make -j4
- ctest -V --output-on-failure'''
- stage 'Win32'
- def win32 = docker.image('guruz/docker-owncloud-client-win32:latest')
- win32.pull() // make sure we have the latest available from Docker Hub
- win32.inside {
- sh '''
- rm -rf build-win32
- mkdir build-win32
- cd build-win32
- ../admin/win/download_runtimes.sh
- cmake .. -DCMAKE_TOOLCHAIN_FILE=../admin/win/Toolchain-mingw32-openSUSE.cmake -DWITH_CRASHREPORTER=ON
- make -j4
- make package
- ctest .
- '''
- }
- // Stage 'macOS' TODO
- }
|