Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Runge <dvzrv@archlinux.org>2022-01-30 21:38:10 +0100
committerDavid Runge <dvzrv@archlinux.org>2022-01-30 21:56:20 +0100
commit21ca345720e0067f6b2817dd66e82029a52395e0 (patch)
treeedb8bcb22a85d6810fc2a63696453ee4677ad9a8 /.gitlab-ci.yml
parentcd1438757647425abfa78fdba06e241c7da0db11 (diff)
Limit triggering a CI build to change of non-code files
.gitlab-ci.yml: Only trigger builds in CI when changing code files or profiles.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 63fd96f..89671f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -38,6 +38,13 @@ build_short:
matrix:
- BUILD_SCRIPT_ARGS: baseline bootstrap
- BUILD_SCRIPT_ARGS: releng bootstrap
+ only:
+ changes:
+ - archiso/*
+ - configs/**/*
+ - Makefile
+ - .gitlab-ci.yml
+ - .gitlab/ci/*
build_long:
extends: .build
@@ -49,3 +56,10 @@ build_long:
- BUILD_SCRIPT_ARGS: releng netboot
tags:
- fast-single-thread
+ only:
+ changes:
+ - archiso/*
+ - configs/**/*
+ - Makefile
+ - .gitlab-ci.yml
+ - .gitlab/ci/*