aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000..46af6eb290
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,20 @@
+stages:
+ - lint
+
+# Make sure master points to the correct upstream commit
+before_script:
+ - >
+ git fetch $CI_MERGE_REQUEST_PROJECT_URL
+ +refs/heads/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME:refs/heads/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
+
+lint:
+ stage: lint
+ image: alpinelinux/apkbuild-lint-tools:latest
+ script:
+ - changed-aports $CI_MERGE_REQUEST_TARGET_BRANCH_NAME | lint
+ allow_failure: true
+ only:
+ - merge_requests
+ tags:
+ - docker-alpine
+ - x86_64