2020-11-13 18:00:17 +00:00
|
|
|
include:
|
|
|
|
- project: 'gnome/citemplates'
|
|
|
|
file: 'flatpak/flatpak_ci_initiative.yml'
|
|
|
|
|
2018-02-13 16:21:18 +00:00
|
|
|
stages:
|
2022-09-09 22:39:20 +00:00
|
|
|
- check
|
2018-02-13 16:21:18 +00:00
|
|
|
- build
|
2020-02-25 19:06:39 +00:00
|
|
|
- analysis
|
2020-02-25 16:42:07 +00:00
|
|
|
- docs
|
2020-02-12 18:10:49 +00:00
|
|
|
- flatpak
|
2021-07-31 16:08:56 +00:00
|
|
|
- publish
|
2020-02-25 16:42:07 +00:00
|
|
|
- deploy
|
2018-02-13 16:21:18 +00:00
|
|
|
|
2018-04-11 10:18:55 +00:00
|
|
|
.cache-paths: &cache-paths
|
|
|
|
paths:
|
|
|
|
- _ccache/
|
|
|
|
- subprojects/gdk-pixbuf/
|
|
|
|
- subprojects/glib/
|
|
|
|
- subprojects/graphene/
|
|
|
|
- subprojects/libepoxy/
|
|
|
|
- subprojects/pango/
|
|
|
|
|
2020-01-29 09:35:10 +00:00
|
|
|
# Common variables
|
|
|
|
variables:
|
2022-08-10 14:35:28 +00:00
|
|
|
COMMON_MESON_FLAGS: "-Dwerror=true -Dglib:werror=false -Dpango:werror=false -Dgtk-doc:werror=false -Dwayland-protocols:werror=false -Dsysprof:werror=false -Dwayland:werror=false"
|
2020-08-21 23:36:17 +00:00
|
|
|
BACKEND_FLAGS: "-Dx11-backend=true -Dwayland-backend=true -Dbroadway-backend=true"
|
|
|
|
FEATURE_FLAGS: "-Dvulkan=enabled -Dcloudproviders=enabled"
|
2020-07-10 15:08:59 +00:00
|
|
|
MESON_TEST_TIMEOUT_MULTIPLIER: 3
|
2022-11-25 17:50:21 +00:00
|
|
|
FEDORA_IMAGE: "registry.gitlab.gnome.org/gnome/gtk/fedora:v39"
|
2022-07-27 10:47:50 +00:00
|
|
|
FLATPAK_IMAGE: "quay.io/gnome_infrastructure/gnome-runtime-images:gnome-master"
|
2020-01-29 09:35:10 +00:00
|
|
|
|
2020-02-11 13:28:16 +00:00
|
|
|
.only-default:
|
|
|
|
only:
|
|
|
|
- branches
|
|
|
|
except:
|
|
|
|
- tags
|
|
|
|
|
|
|
|
style-check-diff:
|
|
|
|
extends: .only-default
|
2020-06-08 10:00:20 +00:00
|
|
|
image: $FEDORA_IMAGE
|
2022-09-09 22:39:20 +00:00
|
|
|
stage: check
|
2020-02-11 13:28:16 +00:00
|
|
|
allow_failure: true
|
|
|
|
script:
|
|
|
|
- .gitlab-ci/run-style-check-diff.sh
|
|
|
|
|
2020-05-15 12:21:45 +00:00
|
|
|
.build-fedora-default:
|
2021-01-07 16:03:10 +00:00
|
|
|
extends: .only-default
|
2020-06-08 10:00:20 +00:00
|
|
|
image: $FEDORA_IMAGE
|
2018-03-01 10:09:22 +00:00
|
|
|
artifacts:
|
2019-04-05 17:23:13 +00:00
|
|
|
when: always
|
|
|
|
reports:
|
|
|
|
junit:
|
2020-05-15 13:44:24 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report-x11.xml"
|
testsuite: Use separate setups for unstable tests instead of should_fail
There are two possible interpretations of "expected failure": either
the test *must* fail (exactly the inverse of an ordinary test, with
success becoming failure and failure becoming success), or the test
*may* fail (with success intended, but failure possible in some
environments). Autotools had the second interpretation, which seems
more useful in practice, but Meson has the first.
Instead of using should_fail, we can put the tests in one of two new
suites: "flaky" is intended for tests that succeed or fail unpredictably
according to the test environment or chance, while "failing" is for
tests that ought to succeed but currently never do as a result of a
bug or missing functionality. With a sufficiently new version of Meson,
the flaky and failing tests are not run by default, but can be requested
by running a setup that does not exclude them, with a command like:
meson test --setup=x11_unstable --suite=flaky --suite=failing
As a bonus, now that we're setting up setups and their excluded suites
programmatically, the gsk-compare-broadway tests are also excluded by
default when running the test setup for a non-broadway backend.
When running the tests in CI, --suite=gtk overrides the default
exclude_suites, so we have to specify --no-suite=flaky and
--no-suite=failing explicitly.
This arrangement is inspired by GNOME/glib!2987, which was contributed
by Marco Trevisan.
Signed-off-by: Simon McVittie <smcv@debian.org>
2022-11-23 19:13:32 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report-x11_unstable.xml"
|
2020-05-15 13:44:24 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report-wayland.xml"
|
testsuite: Use separate setups for unstable tests instead of should_fail
There are two possible interpretations of "expected failure": either
the test *must* fail (exactly the inverse of an ordinary test, with
success becoming failure and failure becoming success), or the test
*may* fail (with success intended, but failure possible in some
environments). Autotools had the second interpretation, which seems
more useful in practice, but Meson has the first.
Instead of using should_fail, we can put the tests in one of two new
suites: "flaky" is intended for tests that succeed or fail unpredictably
according to the test environment or chance, while "failing" is for
tests that ought to succeed but currently never do as a result of a
bug or missing functionality. With a sufficiently new version of Meson,
the flaky and failing tests are not run by default, but can be requested
by running a setup that does not exclude them, with a command like:
meson test --setup=x11_unstable --suite=flaky --suite=failing
As a bonus, now that we're setting up setups and their excluded suites
programmatically, the gsk-compare-broadway tests are also excluded by
default when running the test setup for a non-broadway backend.
When running the tests in CI, --suite=gtk overrides the default
exclude_suites, so we have to specify --no-suite=flaky and
--no-suite=failing explicitly.
This arrangement is inspired by GNOME/glib!2987, which was contributed
by Marco Trevisan.
Signed-off-by: Simon McVittie <smcv@debian.org>
2022-11-23 19:13:32 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report-wayland_unstable.xml"
|
2020-05-15 13:44:24 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report-broadway.xml"
|
testsuite: Use separate setups for unstable tests instead of should_fail
There are two possible interpretations of "expected failure": either
the test *must* fail (exactly the inverse of an ordinary test, with
success becoming failure and failure becoming success), or the test
*may* fail (with success intended, but failure possible in some
environments). Autotools had the second interpretation, which seems
more useful in practice, but Meson has the first.
Instead of using should_fail, we can put the tests in one of two new
suites: "flaky" is intended for tests that succeed or fail unpredictably
according to the test environment or chance, while "failing" is for
tests that ought to succeed but currently never do as a result of a
bug or missing functionality. With a sufficiently new version of Meson,
the flaky and failing tests are not run by default, but can be requested
by running a setup that does not exclude them, with a command like:
meson test --setup=x11_unstable --suite=flaky --suite=failing
As a bonus, now that we're setting up setups and their excluded suites
programmatically, the gsk-compare-broadway tests are also excluded by
default when running the test setup for a non-broadway backend.
When running the tests in CI, --suite=gtk overrides the default
exclude_suites, so we have to specify --no-suite=flaky and
--no-suite=failing explicitly.
This arrangement is inspired by GNOME/glib!2987, which was contributed
by Marco Trevisan.
Signed-off-by: Simon McVittie <smcv@debian.org>
2022-11-23 19:13:32 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report-broadway_unstable.xml"
|
2018-03-01 10:09:22 +00:00
|
|
|
name: "gtk-${CI_COMMIT_REF_NAME}"
|
|
|
|
paths:
|
2018-03-01 10:23:14 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/meson-logs"
|
2020-05-15 13:44:24 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/report*.xml"
|
|
|
|
- "${CI_PROJECT_DIR}/_build/report*.html"
|
|
|
|
- "${CI_PROJECT_DIR}/_build/testsuite/reftests/output/*/*.png"
|
2022-05-18 17:13:39 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/testsuite/reftests/output/*/*.node"
|
2021-07-28 17:41:33 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/testsuite/tools/output/*/*"
|
2020-05-15 13:44:24 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/testsuite/gsk/compare/*/*/*.png"
|
|
|
|
- "${CI_PROJECT_DIR}/_build/testsuite/css/output/*/*.syscap"
|
2021-06-09 11:35:25 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build_hello/meson-logs"
|
2018-04-11 10:18:55 +00:00
|
|
|
cache:
|
|
|
|
key: "$CI_JOB_NAME"
|
2020-05-15 12:21:45 +00:00
|
|
|
paths:
|
|
|
|
- _ccache/
|
|
|
|
- subprojects/gdk-pixbuf/
|
|
|
|
- subprojects/glib/
|
|
|
|
- subprojects/graphene/
|
|
|
|
- subprojects/libepoxy/
|
|
|
|
- subprojects/pango/
|
|
|
|
|
|
|
|
fedora-x86_64:
|
|
|
|
extends: .build-fedora-default
|
|
|
|
stage: build
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2020-05-15 12:21:45 +00:00
|
|
|
variables:
|
|
|
|
EXTRA_MESON_FLAGS: "--buildtype=debug --default-library=both"
|
|
|
|
script:
|
2021-05-05 20:22:32 +00:00
|
|
|
- .gitlab-ci/show-info-linux.sh
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-11-26 14:28:00 +00:00
|
|
|
- meson subprojects download
|
2021-06-08 21:39:34 +00:00
|
|
|
- mkdir _install
|
2022-12-14 18:35:52 +00:00
|
|
|
- meson setup
|
|
|
|
--prefix=${CI_PROJECT_DIR}/_install
|
|
|
|
${COMMON_MESON_FLAGS}
|
|
|
|
${EXTRA_MESON_FLAGS}
|
|
|
|
${BACKEND_FLAGS}
|
|
|
|
${FEATURE_FLAGS}
|
2020-05-15 12:21:45 +00:00
|
|
|
_build
|
2021-06-08 21:39:34 +00:00
|
|
|
- meson compile -C _build
|
|
|
|
- meson install -C _build
|
|
|
|
- PKG_CONFIG_PATH=${CI_PROJECT_DIR}/_install/lib64/pkgconfig:${CI_PROJECT_DIR}/_install/share/pkgconfig meson setup _build_hello examples/hello
|
2021-03-22 10:51:37 +00:00
|
|
|
- LD_LIBRARY_PATH=${CI_PROJECT_DIR}/_install/lib64 meson compile -C _build_hello
|
2020-05-15 12:21:45 +00:00
|
|
|
- .gitlab-ci/run-tests.sh _build x11
|
|
|
|
- .gitlab-ci/run-tests.sh _build wayland
|
2021-10-08 16:38:51 +00:00
|
|
|
- .gitlab-ci/run-tests.sh _build waylandgles
|
2020-05-15 12:21:45 +00:00
|
|
|
- .gitlab-ci/run-tests.sh _build broadway
|
2018-03-20 16:08:45 +00:00
|
|
|
|
2020-01-29 10:31:47 +00:00
|
|
|
release-build:
|
2020-05-15 12:21:45 +00:00
|
|
|
extends: .build-fedora-default
|
2020-01-29 09:35:10 +00:00
|
|
|
stage: build
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2019-11-11 19:11:16 +00:00
|
|
|
variables:
|
2020-01-29 09:35:10 +00:00
|
|
|
EXTRA_MESON_FLAGS: "--buildtype=release"
|
|
|
|
script:
|
2021-05-05 20:22:32 +00:00
|
|
|
- .gitlab-ci/show-info-linux.sh
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-11-26 14:28:00 +00:00
|
|
|
- meson subprojects download
|
2022-12-14 17:44:27 +00:00
|
|
|
- meson setup ${COMMON_MESON_FLAGS} ${EXTRA_MESON_FLAGS} ${BACKEND_FLAGS} ${FEATURE_FLAGS} _build
|
|
|
|
- meson compile -C _build
|
2020-05-15 13:44:24 +00:00
|
|
|
- .gitlab-ci/run-tests.sh _build x11
|
2019-11-11 19:11:16 +00:00
|
|
|
|
2022-01-06 12:01:40 +00:00
|
|
|
fedora-mingw64:
|
|
|
|
extends: .build-fedora-default
|
|
|
|
stage: build
|
|
|
|
needs: []
|
|
|
|
before_script:
|
|
|
|
- sudo dnf install -y
|
|
|
|
mingw64-filesystem
|
|
|
|
mingw64-gcc
|
|
|
|
mingw64-binutils
|
|
|
|
mingw64-cairo
|
|
|
|
mingw64-gdk-pixbuf
|
|
|
|
mingw64-gstreamer1-plugins-bad-free
|
|
|
|
mingw64-glib2
|
|
|
|
mingw64-libepoxy
|
|
|
|
mingw64-pango
|
|
|
|
# mingw64-graphene (rawhide)
|
|
|
|
script:
|
|
|
|
- .gitlab-ci/show-info-linux.sh
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-11-26 14:28:00 +00:00
|
|
|
- meson subprojects download
|
2022-01-06 12:01:40 +00:00
|
|
|
- mkdir _build && cd _build
|
|
|
|
- mingw64-meson -Dintrospection=disabled -Dgraphene:introspection=disabled
|
|
|
|
- ninja
|
|
|
|
|
2020-08-02 01:25:29 +00:00
|
|
|
installed-tests:
|
|
|
|
extends: .build-fedora-default
|
|
|
|
stage: build
|
|
|
|
needs: []
|
|
|
|
variables:
|
2022-12-14 19:00:32 +00:00
|
|
|
EXTRA_MESON_FLAGS: "-Dinstall-tests=true"
|
2020-10-10 00:44:31 +00:00
|
|
|
G_TEST_ACCESSIBLE: 1
|
2020-08-02 01:25:29 +00:00
|
|
|
script:
|
2021-05-05 20:22:32 +00:00
|
|
|
- .gitlab-ci/show-info-linux.sh
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-11-26 14:28:00 +00:00
|
|
|
- meson subprojects download
|
2022-12-14 19:00:32 +00:00
|
|
|
- meson setup
|
|
|
|
--prefix="${CI_PROJECT_DIR}/_installed"
|
|
|
|
${COMMON_MESON_FLAGS}
|
|
|
|
${EXTRA_MESON_FLAGS}
|
|
|
|
${BACKEND_FLAGS}
|
|
|
|
${FEATURE_FLAGS}
|
|
|
|
_build
|
2022-12-14 17:44:27 +00:00
|
|
|
- meson compile -C _build
|
2022-12-14 19:00:32 +00:00
|
|
|
- meson install -C _build
|
|
|
|
- export LD_LIBRARY_PATH=${CI_PROJECT_DIR}/_install/lib64
|
2020-08-02 01:25:29 +00:00
|
|
|
- dbus-run-session xvfb-run -a -s "-screen 0 1024x768x24"
|
|
|
|
gnome-desktop-testing-runner
|
|
|
|
--report-directory=_build/installed-tests-report/failed/
|
|
|
|
--parallel=0
|
2022-12-14 19:00:32 +00:00
|
|
|
--dirs "${CI_PROJECT_DIR}/_installed/share"
|
2020-08-02 01:25:29 +00:00
|
|
|
gtk-4.0
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- "_build/installed-tests-report/"
|
|
|
|
|
|
|
|
|
2020-05-15 12:21:45 +00:00
|
|
|
.mingw-defaults:
|
2021-01-07 16:03:10 +00:00
|
|
|
extends: .only-default
|
2018-04-06 16:15:38 +00:00
|
|
|
stage: build
|
|
|
|
tags:
|
2020-04-29 17:36:40 +00:00
|
|
|
- win32-ps
|
2018-04-06 16:15:38 +00:00
|
|
|
script:
|
|
|
|
- C:\msys64\usr\bin\pacman --noconfirm -Syyuu
|
|
|
|
- C:\msys64\usr\bin\bash -lc "bash -x ./.gitlab-ci/test-msys2.sh"
|
2018-04-11 10:18:55 +00:00
|
|
|
cache:
|
2020-05-06 19:19:52 +00:00
|
|
|
key: "$CI_JOB_NAME"
|
2020-05-15 12:21:45 +00:00
|
|
|
paths:
|
|
|
|
- _ccache/
|
|
|
|
- subprojects/gdk-pixbuf/
|
|
|
|
- subprojects/glib/
|
|
|
|
- subprojects/graphene/
|
|
|
|
- subprojects/libepoxy/
|
|
|
|
- subprojects/pango/
|
2018-04-06 16:15:38 +00:00
|
|
|
|
2020-06-14 18:02:46 +00:00
|
|
|
msys2-mingw64:
|
2020-05-15 12:21:45 +00:00
|
|
|
extends: .mingw-defaults
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2018-04-06 16:15:38 +00:00
|
|
|
variables:
|
2020-06-14 18:02:46 +00:00
|
|
|
MSYSTEM: "MINGW64"
|
2018-04-06 16:15:38 +00:00
|
|
|
CHERE_INVOKING: "yes"
|
2022-01-19 11:17:28 +00:00
|
|
|
artifacts:
|
|
|
|
when: always
|
2022-01-19 15:39:44 +00:00
|
|
|
expose_as: 'Windows_DLL_MSYS2_64_bit_toolchain'
|
2022-01-19 11:17:28 +00:00
|
|
|
paths:
|
2022-01-19 15:37:36 +00:00
|
|
|
- "${CI_PROJECT_DIR}/_build/gtkdll.tar.gz"
|
2018-04-06 16:15:38 +00:00
|
|
|
|
2021-02-12 19:40:57 +00:00
|
|
|
macos:
|
2021-01-07 16:03:10 +00:00
|
|
|
extends: .only-default
|
2021-01-07 16:14:04 +00:00
|
|
|
only:
|
|
|
|
- branches@GNOME/gtk
|
2021-01-03 03:34:52 +00:00
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- macos
|
|
|
|
needs: []
|
|
|
|
before_script:
|
2021-05-05 20:22:32 +00:00
|
|
|
- bash .gitlab-ci/show-info-osx.sh
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2021-01-03 03:34:52 +00:00
|
|
|
- pip3 install --user ninja
|
|
|
|
- export PATH=/Users/gitlabrunner/Library/Python/3.7/bin:$PATH
|
2021-02-12 20:24:27 +00:00
|
|
|
- export MESON_FORCE_BACKTRACE=1
|
2021-01-03 03:34:52 +00:00
|
|
|
script:
|
2022-12-14 17:44:27 +00:00
|
|
|
- meson setup
|
|
|
|
-Dx11-backend=false
|
2021-06-18 13:08:32 +00:00
|
|
|
-Dbroadway-backend=true
|
|
|
|
-Dmacos-backend=true
|
2021-04-01 15:59:18 +00:00
|
|
|
-Dmedia-gstreamer=disabled
|
2021-01-03 03:34:52 +00:00
|
|
|
-Dintrospection=disabled
|
2021-01-03 18:13:27 +00:00
|
|
|
-Dcpp_std=c++11
|
2021-01-03 18:23:45 +00:00
|
|
|
-Dpixman:tests=disabled
|
2022-10-29 01:03:56 +00:00
|
|
|
-Dlibjpeg-turbo:simd=disabled
|
2021-01-03 03:34:52 +00:00
|
|
|
_build
|
2022-12-14 17:44:27 +00:00
|
|
|
- meson compile -C _build
|
2021-01-03 03:34:52 +00:00
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
paths:
|
|
|
|
- "${CI_PROJECT_DIR}/_build/meson-logs"
|
|
|
|
|
2021-04-29 15:09:04 +00:00
|
|
|
vs2017-x64:
|
|
|
|
extends: .only-default
|
|
|
|
# TODO: Uncomment this when ready to merge.
|
|
|
|
#only:
|
|
|
|
# - branches@GNOME/gtk
|
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- win32-ps
|
|
|
|
needs: []
|
|
|
|
script:
|
|
|
|
- .gitlab-ci/test-msvc.bat
|
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
paths:
|
|
|
|
- "${CI_PROJECT_DIR}/_build/meson-logs"
|
|
|
|
|
2020-05-15 12:21:45 +00:00
|
|
|
.flatpak-defaults:
|
2020-06-08 10:00:20 +00:00
|
|
|
image: $FLATPAK_IMAGE
|
2018-03-20 16:08:45 +00:00
|
|
|
stage: flatpak
|
2020-02-13 17:09:35 +00:00
|
|
|
allow_failure: true
|
2020-02-19 15:04:58 +00:00
|
|
|
tags:
|
|
|
|
- flatpak
|
2018-03-20 16:08:45 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2018-04-11 16:45:29 +00:00
|
|
|
- "${APPID}-dev.flatpak"
|
2020-11-13 18:00:17 +00:00
|
|
|
- 'repo.tar'
|
2018-03-20 16:08:45 +00:00
|
|
|
expire_in: 1 day
|
2018-04-11 16:45:29 +00:00
|
|
|
script:
|
|
|
|
- bash -x ./.gitlab-ci/flatpak-build.sh "${APPID}"
|
|
|
|
|
2019-04-05 18:15:11 +00:00
|
|
|
# Manual jobs, for branches and MRs
|
2020-05-15 12:21:45 +00:00
|
|
|
.flatpak-manual:
|
|
|
|
extends: .flatpak-defaults
|
2019-04-05 18:15:11 +00:00
|
|
|
when: manual
|
|
|
|
|
2021-11-29 22:37:49 +00:00
|
|
|
# Only build Flatpak bundles automatically on main
|
|
|
|
.flatpak-main:
|
2020-05-15 12:21:45 +00:00
|
|
|
extends: .flatpak-defaults
|
2019-04-05 18:15:11 +00:00
|
|
|
only:
|
2021-11-29 22:37:49 +00:00
|
|
|
- main
|
2019-04-05 18:15:11 +00:00
|
|
|
|
|
|
|
flatpak-manual:demo:
|
2020-05-15 12:21:45 +00:00
|
|
|
extends: .flatpak-manual
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2018-04-11 16:45:29 +00:00
|
|
|
variables:
|
2019-04-01 22:49:09 +00:00
|
|
|
APPID: org.gtk.Demo4
|
2019-04-05 18:15:11 +00:00
|
|
|
|
2021-11-29 22:37:49 +00:00
|
|
|
flatpak-main:demo:
|
|
|
|
extends: .flatpak-main
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2019-04-05 18:15:11 +00:00
|
|
|
variables:
|
|
|
|
APPID: org.gtk.Demo4
|
2018-03-20 16:08:45 +00:00
|
|
|
|
2019-04-05 18:15:11 +00:00
|
|
|
flatpak-manual:widget-factory:
|
2020-05-15 12:21:45 +00:00
|
|
|
extends: .flatpak-manual
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2018-04-11 16:45:29 +00:00
|
|
|
variables:
|
2019-04-01 23:58:30 +00:00
|
|
|
APPID: org.gtk.WidgetFactory4
|
2019-04-05 18:15:11 +00:00
|
|
|
|
2021-11-29 22:37:49 +00:00
|
|
|
flatpak-main:widget-factory:
|
|
|
|
extends: .flatpak-main
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2019-04-05 18:15:11 +00:00
|
|
|
variables:
|
|
|
|
APPID: org.gtk.WidgetFactory4
|
2018-04-30 14:12:20 +00:00
|
|
|
|
2019-04-05 18:15:11 +00:00
|
|
|
flatpak-manual:icon-browser:
|
2020-05-15 12:21:45 +00:00
|
|
|
extends: .flatpak-manual
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2019-04-02 00:31:17 +00:00
|
|
|
variables:
|
|
|
|
APPID: org.gtk.IconBrowser4
|
2019-04-05 18:15:11 +00:00
|
|
|
|
2021-11-29 22:37:49 +00:00
|
|
|
flatpak-main:icon-browser:
|
|
|
|
extends: .flatpak-main
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2019-04-05 18:15:11 +00:00
|
|
|
variables:
|
|
|
|
APPID: org.gtk.IconBrowser4
|
2019-04-02 00:31:17 +00:00
|
|
|
|
2022-07-25 12:38:55 +00:00
|
|
|
flatpak-manual:node-editor:
|
|
|
|
extends: .flatpak-manual
|
|
|
|
needs: []
|
|
|
|
variables:
|
|
|
|
APPID: org.gtk.gtk4.NodeEditor
|
|
|
|
|
|
|
|
flatpak-main:node-editor:
|
|
|
|
extends: .flatpak-main
|
|
|
|
needs: []
|
|
|
|
variables:
|
|
|
|
APPID: org.gtk.gtk4.NodeEditor
|
|
|
|
|
2020-11-13 18:00:17 +00:00
|
|
|
# Publish the demo apps to the GNOME Nightly repo
|
|
|
|
# https://wiki.gnome.org/Apps/Nightly
|
|
|
|
# https://gitlab.gnome.org/GNOME/Initiatives/-/wikis/DevOps-with-Flatpak
|
|
|
|
nightly demo:
|
|
|
|
extends: '.publish_nightly'
|
2021-11-29 22:37:49 +00:00
|
|
|
dependencies: ['flatpak-main:demo']
|
|
|
|
needs: ['flatpak-main:demo']
|
2020-11-13 18:00:17 +00:00
|
|
|
|
|
|
|
nightly factory:
|
|
|
|
extends: '.publish_nightly'
|
2021-11-29 22:37:49 +00:00
|
|
|
dependencies: ['flatpak-main:widget-factory']
|
|
|
|
needs: ['flatpak-main:widget-factory']
|
2020-11-13 18:00:17 +00:00
|
|
|
|
|
|
|
nightly icon-browser:
|
|
|
|
extends: '.publish_nightly'
|
2021-11-29 22:37:49 +00:00
|
|
|
dependencies: ['flatpak-main:icon-browser']
|
|
|
|
needs: ['flatpak-main:icon-browser']
|
2020-11-13 18:00:17 +00:00
|
|
|
|
2022-07-25 12:38:55 +00:00
|
|
|
nightly node-editor:
|
|
|
|
extends: '.publish_nightly'
|
|
|
|
dependencies: ['flatpak-main:node-editor']
|
|
|
|
needs: ['flatpak-main:node-editor']
|
|
|
|
|
2020-02-25 19:06:39 +00:00
|
|
|
static-scan:
|
2020-06-08 10:00:20 +00:00
|
|
|
image: $FEDORA_IMAGE
|
2020-02-25 19:06:39 +00:00
|
|
|
stage: analysis
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2020-02-25 19:06:39 +00:00
|
|
|
variables:
|
|
|
|
EXTRA_MESON_FLAGS: "--buildtype=debug"
|
|
|
|
script:
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-12-14 17:44:27 +00:00
|
|
|
- meson setup ${COMMON_MESON_FLAGS} ${EXTRA_MESON_FLAGS} _scan_build
|
2020-02-25 19:06:39 +00:00
|
|
|
- ninja -C _scan_build scan-build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- _scan_build/meson-logs
|
|
|
|
allow_failure: true
|
|
|
|
|
2020-07-09 02:22:31 +00:00
|
|
|
# Run tests with the address sanitizer. We need to turn off introspection,
|
|
|
|
# since it is incompatible with asan
|
|
|
|
asan-build:
|
|
|
|
image: $FEDORA_IMAGE
|
2020-07-20 14:41:46 +00:00
|
|
|
tags: [ asan ]
|
2020-07-09 02:22:31 +00:00
|
|
|
stage: analysis
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2020-07-09 02:22:31 +00:00
|
|
|
variables:
|
|
|
|
script:
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-12-14 17:44:27 +00:00
|
|
|
- CC=clang meson setup --buildtype=debugoptimized -Db_sanitize=address -Db_lundef=false -Dintrospection=disabled _build
|
2020-07-09 02:22:31 +00:00
|
|
|
- ninja -C _build
|
|
|
|
- .gitlab-ci/run-tests.sh _build wayland
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- _build/meson-logs
|
|
|
|
allow_failure: true
|
|
|
|
|
2020-02-25 16:42:07 +00:00
|
|
|
reference:
|
2021-06-09 11:10:13 +00:00
|
|
|
image: $FEDORA_IMAGE
|
2020-02-25 16:42:07 +00:00
|
|
|
stage: docs
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: []
|
2020-01-29 10:01:10 +00:00
|
|
|
variables:
|
2021-03-23 12:25:08 +00:00
|
|
|
EXTRA_MESON_FLAGS: "--buildtype=release --force-fallback-for=gdk-pixbuf,pango"
|
2020-01-29 08:16:57 +00:00
|
|
|
script:
|
2022-12-14 18:35:52 +00:00
|
|
|
- export PATH="$HOME/.local/bin:$PATH"
|
2022-12-14 17:09:34 +00:00
|
|
|
- pip3 install --user meson~=0.64
|
2022-12-14 17:44:27 +00:00
|
|
|
- meson setup ${COMMON_MESON_FLAGS} ${EXTRA_MESON_FLAGS} -Dgtk_doc=true -Dgdk-pixbuf:gtk_doc=true -Dpango:gtk_doc=true _build
|
2021-02-15 00:56:35 +00:00
|
|
|
- meson compile -C _build
|
2020-02-25 16:42:07 +00:00
|
|
|
- mkdir -p _reference/
|
2021-02-15 00:56:35 +00:00
|
|
|
- mv _build/docs/reference/gdk/gdk4/ _reference/gdk4/
|
|
|
|
- mv _build/docs/reference/gdk/gdk4-x11/ _reference/gdk4-x11/
|
|
|
|
- mv _build/docs/reference/gdk/gdk4-wayland/ _reference/gdk4-wayland/
|
|
|
|
- mv _build/docs/reference/gsk/gsk4/ _reference/gsk4/
|
|
|
|
- mv _build/docs/reference/gtk/gtk4/ _reference/gtk4/
|
2021-03-23 12:25:08 +00:00
|
|
|
- mv _build/subprojects/pango/docs/Pango/ _reference/Pango/
|
|
|
|
- mv _build/subprojects/pango/docs/PangoCairo/ _reference/PangoCairo/
|
|
|
|
- mv _build/subprojects/pango/docs/PangoFc/ _reference/PangoFc/
|
|
|
|
- mv _build/subprojects/pango/docs/PangoFT2/ _reference/PangoFT2/
|
|
|
|
- mv _build/subprojects/pango/docs/PangoOT/ _reference/PangoOT/
|
|
|
|
- mv _build/subprojects/pango/docs/PangoXft/ _reference/PangoXft/
|
|
|
|
- mv _build/subprojects/gdk-pixbuf/docs/gdk-pixbuf/ _reference/gdk-pixbuf/
|
|
|
|
- mv _build/subprojects/gdk-pixbuf/docs/gdk-pixdata/ _reference/gdk-pixdata/
|
2020-02-25 16:42:07 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- _reference
|
|
|
|
|
2021-07-31 16:08:56 +00:00
|
|
|
publish-docs:
|
2022-06-28 20:31:07 +00:00
|
|
|
image: fedora:latest
|
2021-07-31 16:08:56 +00:00
|
|
|
stage: publish
|
2020-07-27 11:44:36 +00:00
|
|
|
needs: ['reference']
|
2020-02-25 16:42:07 +00:00
|
|
|
script:
|
2021-07-31 16:08:56 +00:00
|
|
|
- "curl -X POST -F token=${PAGES_TRIGGER_TOKEN} -F ref=docs-gtk-org https://gitlab.gnome.org/api/v4/projects/665/trigger/pipeline"
|
2020-01-29 08:16:57 +00:00
|
|
|
only:
|
2021-07-31 16:08:56 +00:00
|
|
|
refs:
|
2021-11-29 22:37:49 +00:00
|
|
|
- main
|