You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
# Configure and run code checks |
|
|
|
include: '.gitlab-ci/utils.yml' |
|
|
|
# Checks from the pre-commit hook |
|
pre-commit-checks: |
|
stage: check |
|
image: "rustlang/rust:nightly-slim" |
|
interruptible: true |
|
script: |
|
- hooks/checks.sh --verbose --force-install |
|
|
|
# Checks needing dependencies in the Flatpak runtime |
|
flatpak-checks: |
|
extends: |
|
- .remove_build_only_modules |
|
stage: check |
|
image: 'quay.io/gnome_infrastructure/gnome-runtime-images:gnome-master' |
|
tags: |
|
- flatpak |
|
interruptible: true |
|
script: |
|
- flatpak-builder --keep-build-dirs --user --disable-rofiles-fuse --stop-at=${FLATPAK_MODULE} flatpak_app --repo=repo ${BRANCH:+--default-branch=$BRANCH} ${MANIFEST_PATH} |
|
# Lint the Rust code |
|
- echo "cargo clippy -- -D warnings" | flatpak-builder --disable-rofiles-fuse --build-shell=${FLATPAK_MODULE} flatpak_app ${MANIFEST_PATH} |
|
# Lint the Blueprint files |
|
- echo "blueprint-compiler format ../src" | flatpak-builder --disable-rofiles-fuse --build-shell=${FLATPAK_MODULE} flatpak_app ${MANIFEST_PATH} |
|
# Lint the Meson files |
|
- echo "meson format -qr" | flatpak-builder --disable-rofiles-fuse --build-shell=${FLATPAK_MODULE} flatpak_app ${MANIFEST_PATH}
|
|
|