ci: Combine commit/source checks under 'review'

The current names are an artifact from when flatpak-ci used
review/stop_review jobs. 'review' is a much better name and
matches what gnome-shell itself uses.

https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/116
This commit is contained in:
Florian Müllner
2020-04-11 00:16:29 +02:00
parent a317d79016
commit 2e21f7cf72

View File

@@ -1,8 +1,7 @@
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v1
stages:
- commit_check
- source_check
- review
- build
variables:
@@ -16,14 +15,14 @@ variables:
check_commit_log:
image: registry.gitlab.gnome.org/gnome/gjs:fedora.static-analysis
stage: commit_check
stage: review
script:
- ./.gitlab-ci/check-commit-log.sh
only:
- merge_requests
eslint:
stage: source_check
stage: review
script:
- eslint -o $LINT_LOG extensions --no-color || { cat $LINT_LOG; false; }
<<: *only_default