Warning, /graphics/krita/build-tools/ci-scripts/linux.yml is written in an unsupported language. File is not indexed.

0001 linux-build:
0002   stage: build
0003   image: invent-registry.kde.org/sysadmin/ci-images/krita-appimage-builder:latest
0004   tags:
0005     - Linux
0006   variables:
0007     KDECI_BUILD_TYPE: Release
0008     KDECI_CC_CACHE: /mnt/caches/krita-appimage/
0009     KDECI_CACHE_PATH: /mnt/artifacts/krita-appimage/
0010     KDECI_GITLAB_SERVER: https://invent.kde.org/
0011     KDECI_PACKAGE_PROJECT: teams/ci-artifacts/krita-appimage
0012   interruptible: true
0013   before_script:
0014     - git clone https://invent.kde.org/dkazakov/ci-utilities
0015     - git clone https://invent.kde.org/sysadmin/repo-metadata ci-utilities/repo-metadata/
0016     - export PATH="$HOME/tools/bin:$PATH"
0017   script:
0018     - git config --global --add safe.directory $CI_PROJECT_DIR
0019     - python3 -u build-tools/ci-scripts/download-deps.py
0020     - python3 -u ci-utilities/run-ci-build.py --project $CI_PROJECT_NAME --branch $CI_COMMIT_REF_NAME --platform Linux/Qt5/Shared
0021     - python3 -u build-tools/ci-scripts/build-appimage.py
0022   coverage: '/^TOTAL.*\s+(\d+\%)$/'
0023   artifacts:
0024     name: krita-$CI_COMMIT_REF_SLUG
0025     expire_in: 10 days
0026     when: always
0027     paths:
0028       - "**/failed_test_shot_*.png" # deprecated use appium_artifact_ instead
0029       - "**/appium_artifact_*"
0030       - "_packaging/*.appimage"
0031       - "_packaging/*.zsync"
0032     reports:
0033       junit: JUnitTestResults.xml
0034       coverage_report:
0035         coverage_format: cobertura
0036         path: CoberturaLcovResults.xml