Skip to content
Snippets Groups Projects
Unverified Commit 487962c7 authored by Oliver Smith's avatar Oliver Smith
Browse files

gitlab-ci.yml: run check_mr_settings.py

parent f1241c87
Branches
Tags
1 merge request!1gitlab-ci.yml: run check_mr_settings.py
Pipeline #144698 passed
---
.only-default: &only-default
only:
- master
- merge_requests
- tags
flake8:
<<: *only-default
image: "alpine:latest"
before_script:
- "apk -q add py3-pip"
......@@ -8,6 +15,7 @@ flake8:
- ".ci/flake8.sh"
shellcheck:
<<: *only-default
image: "alpine:latest"
before_script:
- "apk -q add shellcheck"
......@@ -15,7 +23,17 @@ shellcheck:
- ".ci/shellcheck.sh"
install-pmbootstrap:
<<: *only-default
image: "alpine:latest"
script:
- "./install_pmbootstrap.sh"
- su pmos -c "pmbootstrap chroot -- echo 'hello world'"
mr-settings:
only:
- merge_requests
image: "alpine:latest"
before_script:
- "apk -q add python3"
script:
- "./check_mr_settings.py"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment