a3541ff0d9
We already do a meson build/install when exporting extension bundles, and now that the syntax check is handled by the CI instead of `meson test`, the job just duplicates work. https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/116
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
|
|
|
stages:
|
|
- review
|
|
- build
|
|
|
|
variables:
|
|
LINT_LOG: "eslint-report.txt"
|
|
JS_LOG: "js-report.txt"
|
|
|
|
.only_default: &only_default
|
|
only:
|
|
- branches
|
|
- tags
|
|
- merge_requests
|
|
|
|
check_commit_log:
|
|
image: registry.gitlab.gnome.org/gnome/gjs:fedora.static-analysis
|
|
stage: review
|
|
script:
|
|
- ./.gitlab-ci/check-commit-log.sh
|
|
only:
|
|
- merge_requests
|
|
|
|
js_check:
|
|
stage: review
|
|
script:
|
|
- find extensions -name '*.js' -exec js68 -c -s '{}' ';' 2>&1 | tee $JS_LOG
|
|
- (! grep -q . $JS_LOG)
|
|
<<: *only_default
|
|
artifacts:
|
|
paths:
|
|
- ${JS_LOG}
|
|
when: on_failure
|
|
|
|
eslint:
|
|
stage: review
|
|
script:
|
|
- eslint -o $LINT_LOG extensions --no-color || { cat $LINT_LOG; false; }
|
|
<<: *only_default
|
|
artifacts:
|
|
paths:
|
|
- ${LINT_LOG}
|
|
when: on_failure
|
|
|
|
build-bundles:
|
|
stage: build
|
|
script:
|
|
- ./export-zips.sh
|
|
<<: *only_default
|
|
artifacts:
|
|
name: 'Extension bundles'
|
|
expose_as: 'Get Extension bundles here'
|
|
paths:
|
|
- zip-files/
|