2020-04-24 17:27:38 -04:00
|
|
|
include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
|
2020-03-19 13:20:27 -04:00
|
|
|
|
2019-01-27 21:34:48 -05:00
|
|
|
stages:
|
2019-02-13 14:34:07 -05:00
|
|
|
- review
|
2019-02-12 11:53:42 -05:00
|
|
|
- build
|
2019-02-12 16:39:47 -05:00
|
|
|
- test
|
2020-03-19 13:20:27 -04:00
|
|
|
- deploy
|
2019-01-27 21:34:48 -05:00
|
|
|
|
|
|
|
variables:
|
2020-03-19 13:20:27 -04:00
|
|
|
BUNDLE: "extensions-git.flatpak"
|
2019-01-27 21:34:48 -05:00
|
|
|
JS_LOG: "js-report.txt"
|
2019-02-08 22:51:00 -05:00
|
|
|
POT_LOG: "pot-update.txt"
|
2019-01-27 21:34:48 -05:00
|
|
|
|
2019-02-12 11:53:42 -05:00
|
|
|
.only_default: &only_default
|
|
|
|
only:
|
|
|
|
- branches
|
|
|
|
- tags
|
|
|
|
- merge_requests
|
|
|
|
|
2019-02-13 14:34:07 -05:00
|
|
|
check_commit_log:
|
2020-04-03 18:58:47 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/mutter/master:v4
|
2019-02-13 14:34:07 -05:00
|
|
|
stage: review
|
2019-04-24 06:24:12 -04:00
|
|
|
variables:
|
|
|
|
GIT_DEPTH: "100"
|
2019-02-13 14:34:07 -05:00
|
|
|
script:
|
|
|
|
- ./.gitlab-ci/check-commit-log.sh
|
|
|
|
only:
|
|
|
|
- merge_requests
|
|
|
|
|
2019-01-27 21:34:48 -05:00
|
|
|
js_check:
|
2020-04-03 20:03:24 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
2019-07-23 18:29:15 -04:00
|
|
|
stage: review
|
2019-01-27 21:34:48 -05:00
|
|
|
script:
|
2020-04-03 20:03:24 -04:00
|
|
|
- find js -name '*.js' -exec js68 -c -s '{}' ';' 2>&1 | tee $JS_LOG
|
2019-01-27 21:34:48 -05:00
|
|
|
- (! grep -q . $JS_LOG)
|
2019-02-12 11:53:42 -05:00
|
|
|
<<: *only_default
|
2019-01-27 21:34:48 -05:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- ${JS_LOG}
|
|
|
|
when: on_failure
|
2019-02-12 11:53:42 -05:00
|
|
|
|
2019-06-30 07:05:04 -04:00
|
|
|
eslint:
|
2020-04-03 20:03:24 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
2019-06-30 07:05:04 -04:00
|
|
|
stage: review
|
|
|
|
script:
|
|
|
|
- ./.gitlab-ci/run-eslint.sh
|
|
|
|
<<: *only_default
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- reports
|
|
|
|
when: always
|
|
|
|
|
2020-02-18 13:05:47 -05:00
|
|
|
potfile_check:
|
2020-04-03 20:03:24 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
2020-02-18 13:05:47 -05:00
|
|
|
stage: review
|
|
|
|
script:
|
|
|
|
- ./.gitlab-ci/check-potfiles.sh
|
|
|
|
<<: *only_default
|
|
|
|
|
2020-02-18 11:08:23 -05:00
|
|
|
no_template_check:
|
2020-04-03 20:03:24 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
2020-02-18 11:08:23 -05:00
|
|
|
stage: review
|
|
|
|
script:
|
|
|
|
- ./.gitlab-ci/check-template-strings.sh
|
|
|
|
<<: *only_default
|
|
|
|
|
2019-02-12 11:53:42 -05:00
|
|
|
build:
|
2020-04-03 18:58:47 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/mutter/master:v4
|
2019-02-12 11:53:42 -05:00
|
|
|
stage: build
|
|
|
|
before_script:
|
|
|
|
- .gitlab-ci/checkout-mutter.sh
|
|
|
|
- meson mutter mutter/build --prefix=/usr -Dtests=false
|
|
|
|
- ninja -C mutter/build install
|
|
|
|
script:
|
2019-09-10 10:02:44 -04:00
|
|
|
- meson . build -Dbuiltype=debugoptimized -Dman=false --werror
|
2019-02-12 11:53:42 -05:00
|
|
|
- ninja -C build
|
|
|
|
- ninja -C build install
|
|
|
|
<<: *only_default
|
2019-02-12 16:39:47 -05:00
|
|
|
artifacts:
|
|
|
|
expire_in: 1 day
|
|
|
|
paths:
|
|
|
|
- mutter
|
|
|
|
- build
|
|
|
|
|
|
|
|
test:
|
2020-04-03 18:58:47 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/mutter/master:v4
|
2019-02-12 16:39:47 -05:00
|
|
|
stage: test
|
2019-08-25 11:52:49 -04:00
|
|
|
variables:
|
|
|
|
XDG_RUNTIME_DIR: "$CI_PROJECT_DIR/runtime-dir"
|
2019-10-30 14:15:26 -04:00
|
|
|
NO_AT_BRIDGE: "1"
|
2019-02-12 16:39:47 -05:00
|
|
|
before_script:
|
|
|
|
- ninja -C mutter/build install
|
|
|
|
script:
|
2019-10-30 14:15:26 -04:00
|
|
|
- dbus-run-session -- xvfb-run meson test -C build --no-rebuild
|
2019-02-12 16:39:47 -05:00
|
|
|
<<: *only_default
|
|
|
|
artifacts:
|
|
|
|
expire_in: 1 day
|
|
|
|
paths:
|
|
|
|
- build/meson-logs/testlog.txt
|
|
|
|
when: on_failure
|
2019-02-08 22:51:00 -05:00
|
|
|
|
|
|
|
test-pot:
|
2020-04-03 18:58:47 -04:00
|
|
|
image: registry.gitlab.gnome.org/gnome/mutter/master:v4
|
2019-02-08 22:51:00 -05:00
|
|
|
stage: test
|
|
|
|
before_script:
|
|
|
|
- ninja -C mutter/build install
|
|
|
|
script:
|
|
|
|
# Check that pot files are generated correctly:
|
|
|
|
# https://savannah.gnu.org/bugs/?50920#comment5
|
|
|
|
- ninja -C build gnome-shell-pot 2>&1 | awk '
|
|
|
|
BEGIN { start=0; }
|
|
|
|
start==1 { print $0; }
|
|
|
|
/gnome-shell-pot/ { start=1; }
|
|
|
|
' | tee $POT_LOG
|
|
|
|
- (! grep -q . $POT_LOG)
|
|
|
|
<<: *only_default
|
2020-03-19 13:20:27 -04:00
|
|
|
|
|
|
|
flatpak:
|
|
|
|
stage: build
|
|
|
|
variables:
|
|
|
|
SUBPROJECT: "subprojects/extensions-app"
|
|
|
|
# Your manifest path
|
|
|
|
MANIFEST_PATH: "$SUBPROJECT/build-aux/flatpak/org.gnome.Extensions.json"
|
|
|
|
RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
|
|
|
|
FLATPAK_MODULE: "gnome-extensions-app"
|
|
|
|
APP_ID: "org.gnome.Extensions"
|
|
|
|
extends: .flatpak
|
|
|
|
<<: *only_default
|
|
|
|
|
|
|
|
nightly:
|
|
|
|
extends: '.publish_nightly'
|
|
|
|
variables:
|
|
|
|
BUNDLES: '$BUNDLE'
|