1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
workflow:
auto_cancel:
on_new_commit: interruptible
include:
- project: Infrastructure/freedesktop-ci-templates
file: templates/fedora.yml
.fedora:
extends: .fdo.distribution-image@fedora
interruptible: true
needs: ["docker-image"]
variables:
###
# IMPORTANT
# These are the version tags for the docker images the CI runs against.
# If you are hacking on them or need a them to rebuild, its enough
# to change any part of the string of the image you want.
###
FDO_DISTRIBUTION_TAG: '2025-10-03.0'
FDO_DISTRIBUTION_VERSION: '42'
FDO_DISTRIBUTION_PACKAGES: >
meson ninja-build gcc g++ git gettext glib2-devel libjpeg-turbo-devel
libpng-devel json-glib-devel lcms2-devel diffutils shellcheck devscripts
FDO_UPSTREAM_REPO: $CI_PROJECT_PATH
stages:
- dependencies
- build
- analysis
docker-image:
extends:
- .fedora
- .fdo.container-build@fedora
needs: []
stage: dependencies
variables:
GIT_STRATEGY: none
fedora-x86_64:
extends: .fedora
stage: build
script:
- git clone --depth 1 https://gitlab.gnome.org/GNOME/babl.git
- cd babl && meson _build && ninja -C _build && ninja -C _build install && cd ..
- meson --buildtype debug
--fatal-meson-warnings
--default-library=both
_build
- ninja -C _build
artifacts:
name: "gegl-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
when: always
paths:
- "_build/meson-logs"
expire_in: 8 days
meson-health:
extends: .fedora
stage: analysis
script:
- sh .gitlab/run_meson_health_diff.sh
allow_failure: true
branches-check:
extends: .fedora
rules:
- if: '$CI_PIPELINE_SOURCE == "push" && $CI_OPEN_MERGE_REQUESTS == null && $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH'
stage: analysis
variables:
GIT_DEPTH: "0"
script:
- sh .gitlab/check_dead_branches.sh
allow_failure: true
|