valentina/.cirrus.yml

207 lines
6.6 KiB
YAML
Raw Normal View History

2021-09-23 09:57:27 +02:00
### Global defaults
env:
CCACHE_SIZE: "200M"
CCACHE_DIR: "/tmp/ccache_dir"
CCACHE_NOHASHDIR: "1" # Debug info might contain a stale path if the build dir changes, but this is fine
2021-09-25 07:42:27 +02:00
CCACHE_CPP2: "yes"
2021-09-23 09:57:27 +02:00
### Task templates
# https://cirrus-ci.org/guide/tips-and-tricks/#sharing-configuration-between-tasks
filter_template: &FILTER_TEMPLATE
2023-02-14 11:37:27 +01:00
skip: "!changesInclude('.cirrus.yml', '**.{h,hpp,cpp,c,pro,pri,ts,ui,png,qbs,js}')"
2021-09-23 09:57:27 +02:00
2021-09-25 07:42:27 +02:00
regular_task_template: &REGULER_TASK_TEMPLATE
2021-09-23 09:57:27 +02:00
<< : *FILTER_TEMPLATE
ccache_cache:
folder: "/tmp/ccache_dir"
2021-09-25 07:42:27 +02:00
2023-02-14 11:37:27 +01:00
regular_linux_task_template: &REGULER_LINUX_TASK_TEMPLATE
2021-09-25 07:42:27 +02:00
<< : *REGULER_TASK_TEMPLATE
env:
DEBIAN_FRONTEND: "noninteractive"
2023-02-14 11:52:33 +01:00
PACKAGE_MANAGER_INSTALL: "apt-get -qq update && apt-get install -y"
container:
cpu: 4
2023-02-14 11:37:27 +01:00
linux_qt6_task_template: &LINUX_QT6_TASK_TEMPLATE
<< : *REGULER_LINUX_TASK_TEMPLATE
install_script:
2023-02-14 11:55:58 +01:00
- bash -c "$PACKAGE_MANAGER_INSTALL -y qbs qt6-base-dev qt6-l10n-tools libqt6svg6-dev qt6-base-dev-tools qbs libxerces-c-dev poppler-utils xvfb ccache"
2023-02-14 11:37:27 +01:00
build_script:
- uname -a
- echo $PATH
2023-02-14 14:42:16 +01:00
- which qmake
2023-02-14 11:37:27 +01:00
- which qbs
- pwd
2023-02-14 18:49:03 +01:00
#- ${COMPILER} --version
2023-02-14 19:01:39 +01:00
- qmake --version
2023-02-14 11:37:27 +01:00
- qbs --version
- qbs setup-toolchains --detect
2023-02-14 18:49:03 +01:00
- qbs setup-qt /usr/bin/qmake qt6
- qbs config profiles.qt6.baseProfile ${TOOLCHAIN}
- qbs-config defaultProfile qt6
2023-02-14 18:52:19 +01:00
- qbs build -f valentina.qbs -d build --command-echo-mode command-line profile:qt6 config:release
2023-02-14 11:37:27 +01:00
- xvfb-run -a qbs -p autotest-runner
linux_qt5_qmake_task_template: &LINUX_QT5_QMAKE_TASK_TEMPLATE
2023-02-14 11:52:33 +01:00
<< : *REGULER_LINUX_TASK_TEMPLATE
2023-02-14 11:37:27 +01:00
env:
QT_SELECT: "qt5"
2023-02-14 11:52:33 +01:00
install_script:
- bash -c "$PACKAGE_MANAGER_INSTALL qtbase5-dev libqt5svg5-dev qttools5-dev-tools libqt5xmlpatterns5-dev libqt5core5a libqt5gui5 libqt5printsupport5 libqt5svg5 libqt5widgets5 libqt5xml5 libqt5xmlpatterns5 poppler-utils xvfb ccache"
2021-09-24 12:08:12 +02:00
build_script:
2021-09-23 09:57:27 +02:00
- uname -a
2021-09-26 19:11:27 +02:00
- echo $PATH
2021-09-23 09:57:27 +02:00
- which qmake
- mkdir build
- cd build
- pwd
2023-02-14 18:58:42 +01:00
#- ${COMPILER} --version
2021-09-23 09:57:27 +02:00
- qmake --version
- qmake ../Valentina.pro -r -spec linux-${COMPILER} CONFIG+=noDebugSymbols CONFIG+=checkWarnings
2021-09-23 09:57:27 +02:00
- make -j$(nproc)
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$CIRRUS_WORKING_DIR/build/src/libs/vpropertyexplorer/bin:$CIRRUS_WORKING_DIR/build/src/libs/qmuparser/bin"
- xvfb-run -a make --silent check TESTARGS="-silent"
2023-02-14 11:37:27 +01:00
linux_qt5_qbs_task_template: &LINUX_QT5_QBS_TASK_TEMPLATE
2023-02-14 11:52:33 +01:00
<< : *REGULER_LINUX_TASK_TEMPLATE
2021-09-24 12:08:12 +02:00
install_script:
2023-02-14 11:52:33 +01:00
- bash -c "$PACKAGE_MANAGER_INSTALL qbs qtbase5-dev libqt5svg5-dev qttools5-dev-tools libqt5xmlpatterns5-dev libqt5core5a libqt5gui5 libqt5printsupport5 libqt5svg5 libqt5widgets5 libqt5xml5 libqt5xmlpatterns5 poppler-utils xvfb ccache"
2021-09-24 12:08:12 +02:00
build_script:
2023-02-14 11:37:27 +01:00
- uname -a
- echo $PATH
2023-02-14 14:42:16 +01:00
- which qmake
2023-02-14 11:37:27 +01:00
- which qbs
2021-09-23 09:57:27 +02:00
- pwd
2023-02-14 18:58:42 +01:00
#- ${COMPILER} --version
2023-02-14 19:01:39 +01:00
- qmake --version
2023-02-14 11:37:27 +01:00
- qbs --version
- qbs setup-toolchains --detect
2023-02-14 14:42:16 +01:00
- qbs setup-qt /usr/bin/qmake qt5
2023-02-14 18:30:45 +01:00
- qbs-config defaultProfile qt5
2023-02-14 18:49:03 +01:00
- qbs config profiles.qt5.baseProfile ${TOOLCHAIN}
2023-02-14 14:42:16 +01:00
- qbs build -f valentina.qbs -d build --command-echo-mode command-line profile:qt5 config:release
2023-02-14 11:37:27 +01:00
- xvfb-run -a qbs -p autotest-runner
#macos_task_template: &MACOS_TASK_TEMPLATE
# << : *REGULER_TASK_TEMPLATE
# timeout_in: 120m
# env:
# ACCESS_TOKEN: ENCRYPTED[81e0b2381ffb628b73f5c94f834010e6631191e0ad03cdd0850d440fb2737a74b68131d842030f010c1bf73ab4cdc1ae]
# QTDIR: "/usr/local/opt/qt5"
# PATH: ${HOME}/.local/bin:$QTDIR/bin:${PATH}
# # ^ add user paths
# PIP_CACHE_DIR: ${HOME}/.cache/pip
# DEPLOY: "true"
# LDFLAGS: "-L$QTDIR/lib"
# CPPFLAGS: "-I$QTDIR/include"
# PKG_CONFIG_PATH: "/usr/local/opt/qt5/lib/pkgconfig"
# global_homebrew_cache:
# folder: "/usr/local/Homebrew"
# local_homebrew_cache:
# folder: "$HOME/Library/Caches/Homebrew"
# pip_cache:
# folder: ${PIP_CACHE_DIR}
# install_script:
# - brew update > /dev/null
# - brew install qt5 coreutils ccache
# - chmod -R 755 /usr/local/opt/qt5/*
# - python3 --version
# - pip3 install --user --upgrade pip dropbox
# build_script:
# - mkdir build
# - cd build
# - pwd
# - qmake --version
# - qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=checkWarnings CONFIG+=noTests
# - ${COMPILER} --version
# - make -j$(nproc)
# deploy_script:
# - pwd
# - $CIRRUS_WORKING_DIR/scripts/cirrus-deploy.sh
# before_cache_script:
# - brew cleanup
# env:
# COMPILER: clang
#task:
# name: 'macOS Catalina 10.15 [no tests]'
# macos_instance:
# image: catalina-xcode-11.3.1
# << : *MACOS_TASK_TEMPLATE
# env:
# PLATFORM: "macOS_10.14+"
#task:
# name: 'macOS Big Sur 11 [no tests]'
# macos_instance:
# image: big-sur-xcode-12.4
# << : *MACOS_TASK_TEMPLATE
# env:
# PLATFORM: "macOS_10.15+"
2021-09-23 09:57:27 +02:00
task:
2023-02-14 11:37:27 +01:00
name: 'latest GCC [Qt5 QMake]'
container:
image: teeks99/gcc-ubuntu:latest
memory: 16G # Set to 16GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
<< : *LINUX_QT5_QMAKE_TASK_TEMPLATE
2021-09-23 09:57:27 +02:00
env:
2023-02-14 11:37:27 +01:00
COMPILER: g++
GCC_COLORS: 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
2023-02-14 18:49:03 +01:00
TOOLCHAIN: x86_64-pc-linux-gnu-gcc-12_2
2021-09-23 09:57:27 +02:00
task:
2023-02-14 11:37:27 +01:00
name: 'latest GCC [Qt5 QBS]'
container:
image: teeks99/gcc-ubuntu:latest
memory: 16G # Set to 16GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
<< : *LINUX_QT5_QBS_TASK_TEMPLATE
2021-09-23 09:57:27 +02:00
env:
2023-02-14 11:37:27 +01:00
COMPILER: gcc
GCC_COLORS: 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
2023-02-14 18:49:03 +01:00
TOOLCHAIN: x86_64-pc-linux-gnu-gcc-12_2
2021-09-23 09:57:27 +02:00
task:
2023-02-14 11:37:27 +01:00
name: 'latest GCC [Qt6]'
2021-09-23 09:57:27 +02:00
container:
image: teeks99/gcc-ubuntu:latest
2021-09-25 20:55:39 +02:00
memory: 16G # Set to 16GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
2023-02-14 11:37:27 +01:00
<< : *LINUX_QT6_TASK_TEMPLATE
2021-09-24 12:39:43 +02:00
env:
2023-02-14 11:37:27 +01:00
COMPILER: gcc
2021-09-25 19:57:24 +02:00
GCC_COLORS: 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
2023-02-14 18:49:03 +01:00
TOOLCHAIN: x86_64-pc-linux-gnu-gcc-12_2
2021-09-23 09:57:27 +02:00
task:
2023-02-14 11:37:27 +01:00
name: 'latest Clang [Qt5 QMake]'
container:
2023-02-14 14:46:08 +01:00
image: teeks99/clang-ubuntu:latest
2023-02-14 11:37:27 +01:00
memory: 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
<< : *LINUX_QT5_QMAKE_TASK_TEMPLATE
env:
COMPILER: clang
2023-02-14 18:52:19 +01:00
TOOLCHAIN: clang-16
2023-02-14 11:37:27 +01:00
task:
name: 'latest Clang [Qt5 QBS]'
container:
2023-02-14 14:46:08 +01:00
image: teeks99/clang-ubuntu:latest
2023-02-14 11:37:27 +01:00
memory: 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
<< : *LINUX_QT5_QBS_TASK_TEMPLATE
2023-02-14 11:37:27 +01:00
env:
COMPILER: clang
2023-02-14 18:52:19 +01:00
TOOLCHAIN: clang-16
2023-02-14 11:37:27 +01:00
task:
name: 'latest Clang [Qt6]'
2021-09-23 09:57:27 +02:00
container:
2023-02-14 14:46:08 +01:00
image: teeks99/clang-ubuntu:latest
2021-09-25 20:55:39 +02:00
memory: 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
2023-02-14 11:37:27 +01:00
<< : *LINUX_QT6_TASK_TEMPLATE
2021-09-24 12:39:43 +02:00
env:
COMPILER: clang
2023-02-14 18:52:19 +01:00
TOOLCHAIN: clang-16