From 2e21f7cf72d8bf538d4b1bf06524febb27d31420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 11 Apr 2020 00:16:29 +0200 Subject: [PATCH] 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 --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a168ea1f..2f14e2cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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