mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
067c174e61
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
111 lines
3.2 KiB
YAML
111 lines
3.2 KiB
YAML
pipeline:
|
|
clone:
|
|
image: plugins/git
|
|
depth: 1
|
|
qt-5.6:
|
|
image: nextcloudci/client-5.6:latest
|
|
commands:
|
|
# Install QtKeyChain
|
|
- /bin/bash -c "
|
|
source /opt/qt56/bin/qt56-env.sh &&
|
|
cd /tmp &&
|
|
git clone https://github.com/frankosterfeld/qtkeychain.git &&
|
|
cd qtkeychain &&
|
|
git checkout v0.8.0 &&
|
|
mkdir build &&
|
|
cd build &&
|
|
cmake ../ &&
|
|
make &&
|
|
make install"
|
|
# Build client
|
|
- /bin/bash -c "
|
|
source /opt/qt56/bin/qt56-env.sh &&
|
|
mkdir build &&
|
|
cd build &&
|
|
cmake -D NO_SHIBBOLETH=1 ../ &&
|
|
make"
|
|
when:
|
|
matrix:
|
|
TESTS: qt-5.6
|
|
qt-5.7:
|
|
image: nextcloudci/client-5.7:latest
|
|
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.8.0 &&
|
|
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 ../ &&
|
|
make"
|
|
when:
|
|
matrix:
|
|
TESTS: qt-5.7
|
|
qt-5.8:
|
|
image: nextcloudci/client-5.8:latest
|
|
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.8.0 &&
|
|
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 ../ &&
|
|
make"
|
|
when:
|
|
matrix:
|
|
TESTS: qt-5.8
|
|
qt-5.9:
|
|
image: nextcloudci/client-5.9:latest
|
|
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.8.0 &&
|
|
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 ../ &&
|
|
make"
|
|
when:
|
|
matrix:
|
|
TESTS: qt-5.9
|
|
|
|
matrix:
|
|
include:
|
|
- TESTS: qt-5.6
|
|
- TESTS: qt-5.7
|
|
- TESTS: qt-5.8
|
|
- TESTS: qt-5.9
|