| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- kind: pipeline
- name: qt-5.7
- steps:
- - name: build and test
- image: nextcloudci/client-5.7:client-5.7-4
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- source /opt/qt57/bin/qt57-env.sh &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- source /opt/qt57/bin/qt57-env.sh &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.8
- steps:
- - name: build and test
- image: nextcloudci/client-5.8:client-5.8-4
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- source /opt/qt58/bin/qt58-env.sh &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- source /opt/qt58/bin/qt58-env.sh &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.9
- steps:
- - name: build and test
- image: nextcloudci/client-5.9:client-5.9-5
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- source /opt/qt59/bin/qt59-env.sh &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- source /opt/qt59/bin/qt59-env.sh &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.10
- steps:
- - name: build and test
- image: nextcloudci/client-5.10:client-5.10-3
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- export CC=gcc-7 &&
- export CXX=g++-7 &&
- source /opt/qt510/bin/qt510-env.sh &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- export CC=gcc-7 &&
- export CXX=g++-7 &&
- source /opt/qt510/bin/qt510-env.sh &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.11
- steps:
- - name: build and test
- image: nextcloudci/client-5.11:client-5.11-3
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- export CC=gcc-7 &&
- export CXX=g++-7 &&
- source /opt/qt511/bin/qt511-env.sh &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- export CC=gcc-7 &&
- export CXX=g++-7 &&
- source /opt/qt511/bin/qt511-env.sh &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.11-clang
- steps:
- - name: build and test
- image: nextcloudci/client-5.11:client-5.11-3
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- export CC=clang-6.0 &&
- export CXX=clang++-6.0 &&
- source /opt/qt511/bin/qt511-env.sh &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- export CC=clang-6.0 &&
- export CXX=clang++-6.0 &&
- source /opt/qt511/bin/qt511-env.sh &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.12
- steps:
- - name: build and test
- image: nextcloudci/client-5.12:client-5.12-5
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- export CC=gcc-7 &&
- export CXX=g++-7 &&
- export QT_BASE_DIR=/opt/qt5.12.5 &&
- export QTDIR=\$QT_BASE_DIR &&
- export PATH=\$QT_BASE_DIR/bin:\$PATH &&
- export LD_LIBRARY_PATH=\$QT_BASE_DIR/lib/x86_64-linux-gnu:\$QT_BASE_DIR/lib:/usr/local/lib:\$LD_LIBRARY_PATH &&
- export PKG_CONFIG_PATH=\$QT_BASE_DIR/lib/pkgconfig:\$PKG_CONFIG_PATH &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- export CC=gcc-7 &&
- export CXX=g++-7 &&
- export QT_BASE_DIR=/opt/qt5.12.5 &&
- export QTDIR=\$QT_BASE_DIR &&
- export PATH=\$QT_BASE_DIR/bin:\$PATH &&
- export LD_LIBRARY_PATH=\$QT_BASE_DIR/lib/x86_64-linux-gnu:\$QT_BASE_DIR/lib:/usr/local/lib:\$LD_LIBRARY_PATH &&
- export PKG_CONFIG_PATH=\$QT_BASE_DIR/lib/pkgconfig:\$PKG_CONFIG_PATH &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: qt-5.12-clang
- steps:
- - name: build and test
- image: nextcloudci/client-5.12:client-5.12-5
- commands:
- # Install QtKeyChain
- - /bin/bash -c "
- export CC=clang-6.0 &&
- export CXX=clang++-6.0 &&
- export QT_BASE_DIR=/opt/qt5.12.5 &&
- export QTDIR=\$QT_BASE_DIR &&
- export PATH=\$QT_BASE_DIR/bin:\$PATH &&
- export LD_LIBRARY_PATH=\$QT_BASE_DIR/lib/x86_64-linux-gnu:\$QT_BASE_DIR/lib:/usr/local/lib:\$LD_LIBRARY_PATH &&
- export PKG_CONFIG_PATH=\$QT_BASE_DIR/lib/pkgconfig:\$PKG_CONFIG_PATH &&
- cd /tmp &&
- git clone https://github.com/frankosterfeld/qtkeychain.git &&
- cd qtkeychain &&
- git checkout v0.9.1 &&
- mkdir build &&
- cd build &&
- cmake ../ &&
- make &&
- make install"
- # Build client
- - /bin/bash -c "
- export CC=clang-6.0 &&
- export CXX=clang++-6.0 &&
- export QT_BASE_DIR=/opt/qt5.12.5 &&
- export QTDIR=\$QT_BASE_DIR &&
- export PATH=\$QT_BASE_DIR/bin:\$PATH &&
- export LD_LIBRARY_PATH=\$QT_BASE_DIR/lib/x86_64-linux-gnu:\$QT_BASE_DIR/lib:/usr/local/lib:\$LD_LIBRARY_PATH &&
- export PKG_CONFIG_PATH=\$QT_BASE_DIR/lib/pkgconfig:\$PKG_CONFIG_PATH &&
- mkdir build &&
- cd build &&
- cmake -D NO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../ &&
- make &&
- useradd -m -s /bin/bash test &&
- chown -R test:test . &&
- su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: AppImage
- steps:
- - name: build
- image: nextcloudci/client-5.12:client-5.12-5
- commands:
- - /bin/bash -c "./admin/linux/build-appimage.sh"
- - /bin/bash -c "./admin/linux/upload-appimage.sh"
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: Debian
- steps:
- - name: build
- image: nextcloudci/client-debian-ci:client-debian-ci-2
- commands:
- - /bin/bash -c "./admin/linux/debian/drone-build.sh"
- environment:
- DEBIAN_SECRET_KEY:
- from_secret: DEBIAN_SECRET_KEY
- DEBIAN_SECRET_IV:
- from_secret: DEBIAN_SECRET_IV
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
- ---
- kind: pipeline
- name: Documentation
- steps:
- - name: build
- image: nextcloudci/documentation:documentation-5
- commands:
- - cd doc
- - make html
- trigger:
- branch:
- - master
- event:
- - pull_request
- - push
|