2020-10-24 19:58:52 +02:00
|
|
|
include:
|
|
|
|
- remote: 'https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/5bc02d91b97b835099c28c54409c3438e52b4d21/templates/fedora.yml'
|
2018-06-14 21:01:35 +02:00
|
|
|
|
|
|
|
stages:
|
2020-10-24 19:58:52 +02:00
|
|
|
- prepare
|
2019-02-05 18:19:43 +01:00
|
|
|
- review
|
2018-06-14 21:01:35 +02:00
|
|
|
- build
|
2018-08-17 14:15:29 +02:00
|
|
|
- test
|
2020-05-06 15:27:41 +02:00
|
|
|
- coverage
|
2018-06-14 21:01:35 +02:00
|
|
|
|
2020-10-24 19:58:52 +02:00
|
|
|
.mutter.fedora:33:
|
|
|
|
variables:
|
|
|
|
FDO_DISTRIBUTION_VERSION: 33
|
|
|
|
FDO_DISTRIBUTION_TAG: '2020-11-16.0'
|
|
|
|
FDO_UPSTREAM_REPO: GNOME/mutter
|
|
|
|
FDO_DISTRIBUTION_EXEC: |
|
|
|
|
dnf install -y 'dnf-command(builddep)' &&
|
|
|
|
dnf builddep -y mutter --setopt=install_weak_deps=False &&
|
|
|
|
|
|
|
|
# For running unit tests
|
|
|
|
dnf install -y xorg-x11-server-Xvfb mesa-dri-drivers dbus dbus-x11 \
|
|
|
|
xorg-x11-server-Xvfb accountsservice-libs \
|
|
|
|
gnome-control-center gcovr libnma python3-gobject \
|
|
|
|
python3-dbusmock &&
|
|
|
|
|
|
|
|
# GNOME Shell
|
|
|
|
dnf builddep -y gnome-shell --setopt=install_weak_deps=False &&
|
|
|
|
dnf remove -y gnome-bluetooth-libs-devel &&
|
|
|
|
dnf remove -y --noautoremove mutter mutter-devel &&
|
|
|
|
|
|
|
|
dnf clean all
|
|
|
|
|
2020-11-16 17:21:53 +01:00
|
|
|
.only_default: &only_default
|
|
|
|
only:
|
|
|
|
- merge_requests
|
|
|
|
- /^.*$/
|
|
|
|
|
2020-10-24 19:58:52 +02:00
|
|
|
build-fedora-container:
|
|
|
|
extends:
|
|
|
|
- .fdo.container-build@fedora@x86_64
|
|
|
|
- .mutter.fedora:33
|
|
|
|
stage: prepare
|
|
|
|
<<: *only_default
|
|
|
|
|
2019-02-05 18:19:43 +01:00
|
|
|
check-commit-log:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2019-02-05 18:19:43 +01:00
|
|
|
stage: review
|
2020-10-24 19:58:52 +02:00
|
|
|
needs: ["build-fedora-container"]
|
2019-04-24 12:24:12 +02:00
|
|
|
variables:
|
|
|
|
GIT_DEPTH: "100"
|
2019-02-05 18:19:43 +01:00
|
|
|
script:
|
|
|
|
- ./.gitlab-ci/check-commit-log.sh
|
2020-11-04 18:35:04 +01:00
|
|
|
artifacts:
|
|
|
|
expire_in: 1 week
|
|
|
|
paths:
|
|
|
|
- commit-message-junit-report.xml
|
|
|
|
reports:
|
|
|
|
junit: commit-message-junit-report.xml
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|
2019-02-05 18:19:43 +01:00
|
|
|
|
2018-06-14 21:01:35 +02:00
|
|
|
build-mutter:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2018-06-14 21:01:35 +02:00
|
|
|
stage: build
|
2020-11-04 20:48:54 +01:00
|
|
|
needs: ["check-commit-log"]
|
2018-06-14 21:01:35 +02:00
|
|
|
script:
|
2020-05-06 15:27:41 +02:00
|
|
|
- meson . build -Dbuildtype=debugoptimized -Db_coverage=true -Degl_device=true -Dwayland_eglstream=true --werror --prefix /usr
|
2018-06-14 21:01:35 +02:00
|
|
|
- ninja -C build
|
|
|
|
- ninja -C build install
|
2019-01-23 13:28:38 +01:00
|
|
|
artifacts:
|
2019-06-22 16:55:08 +02:00
|
|
|
expire_in: 1 day
|
|
|
|
paths:
|
|
|
|
- build
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|
2019-06-22 16:55:08 +02:00
|
|
|
|
2020-03-26 18:23:26 -03:00
|
|
|
build-without-opengl-and-glx:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2020-03-26 18:23:26 -03:00
|
|
|
stage: build
|
2020-11-04 20:48:54 +01:00
|
|
|
needs: ["check-commit-log"]
|
2020-03-26 18:23:26 -03:00
|
|
|
script:
|
|
|
|
- meson . build -Dbuildtype=debugoptimized -Dopengl=false -Dglx=false -Degl_device=true -Dwayland_eglstream=true --werror --prefix /usr
|
|
|
|
- ninja -C build
|
|
|
|
- ninja -C build install
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2020-05-06 15:44:46 +02:00
|
|
|
- build/meson-logs
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|
2020-03-26 18:23:26 -03:00
|
|
|
|
2019-10-09 10:42:35 +02:00
|
|
|
build-without-native-backend-and-wayland:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2019-06-22 16:55:08 +02:00
|
|
|
stage: build
|
2020-11-04 20:48:54 +01:00
|
|
|
needs: ["check-commit-log"]
|
2019-06-22 16:55:08 +02:00
|
|
|
script:
|
2019-10-09 10:42:35 +02:00
|
|
|
- meson . build -Dbuildtype=debugoptimized -Dnative_backend=false -Dudev=false -Dwayland=false -Dcore_tests=false --werror --prefix /usr
|
2019-06-22 16:55:08 +02:00
|
|
|
- ninja -C build
|
|
|
|
- ninja -C build install
|
|
|
|
artifacts:
|
2019-01-23 13:28:38 +01:00
|
|
|
paths:
|
2020-05-06 15:44:46 +02:00
|
|
|
- build/meson-logs
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|
2018-08-17 14:15:29 +02:00
|
|
|
|
|
|
|
test-mutter:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2018-08-17 14:15:29 +02:00
|
|
|
stage: test
|
2019-01-23 13:28:38 +01:00
|
|
|
dependencies:
|
|
|
|
- build-mutter
|
2020-08-04 17:40:24 +02:00
|
|
|
needs: ["build-mutter"]
|
2019-01-24 00:24:32 +01:00
|
|
|
variables:
|
|
|
|
XDG_RUNTIME_DIR: "$CI_PROJECT_DIR/runtime-dir"
|
|
|
|
GSETTINGS_SCHEMA_DIR: "$CI_PROJECT_DIR/build/data"
|
2019-05-16 17:06:04 -05:00
|
|
|
G_SLICE: "always-malloc"
|
2019-05-15 18:41:17 -05:00
|
|
|
MALLOC_CHECK_: "3"
|
2019-05-20 18:40:34 +02:00
|
|
|
NO_AT_BRIDGE: "1"
|
2018-08-17 14:15:29 +02:00
|
|
|
script:
|
2019-04-08 14:34:13 +02:00
|
|
|
- bash -x ./.gitlab-ci/run-tests.sh
|
|
|
|
artifacts:
|
2020-10-27 20:29:54 +01:00
|
|
|
expire_in: 1 day
|
2019-04-08 14:34:13 +02:00
|
|
|
reports:
|
|
|
|
junit: "build/${CI_JOB_NAME}-report.xml"
|
|
|
|
name: "mutter-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
|
|
|
|
when: always
|
|
|
|
paths:
|
2020-10-27 20:29:54 +01:00
|
|
|
- build
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|
2019-04-22 14:54:11 -03:00
|
|
|
|
2020-05-06 15:27:41 +02:00
|
|
|
test-mutter-coverage:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2020-05-06 15:27:41 +02:00
|
|
|
stage: coverage
|
|
|
|
dependencies:
|
|
|
|
- test-mutter
|
2020-08-04 17:40:24 +02:00
|
|
|
needs: ["test-mutter"]
|
2020-05-06 15:27:41 +02:00
|
|
|
script:
|
|
|
|
- ninja -C build coverage
|
|
|
|
- cat build/meson-logs/coverage.txt
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2020-10-27 20:29:54 +01:00
|
|
|
- build/meson-logs/coveragereport
|
|
|
|
coverage: '/^TOTAL.*\s+(\d+\%)$/'
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|
2020-05-06 15:27:41 +02:00
|
|
|
|
2019-04-22 14:54:11 -03:00
|
|
|
can-build-gnome-shell:
|
2020-10-24 19:58:52 +02:00
|
|
|
extends:
|
|
|
|
- .fdo.distribution-image@fedora
|
|
|
|
- .mutter.fedora:33
|
2019-04-22 14:54:11 -03:00
|
|
|
stage: test
|
|
|
|
dependencies:
|
|
|
|
- build-mutter
|
2020-08-04 17:40:24 +02:00
|
|
|
needs: ["build-mutter"]
|
2019-04-22 14:54:11 -03:00
|
|
|
before_script:
|
|
|
|
- meson install --no-rebuild -C build
|
|
|
|
script:
|
|
|
|
- .gitlab-ci/checkout-gnome-shell.sh
|
2019-08-21 22:30:41 +02:00
|
|
|
- meson gnome-shell gnome-shell/build --prefix /usr -Dman=false
|
2019-04-22 14:54:11 -03:00
|
|
|
- ninja -C gnome-shell/build install
|
2020-11-16 17:21:53 +01:00
|
|
|
<<: *only_default
|