Limit CI pipelines on default branch and merge requests
.gitlab-ci.yml: Only run build pipelines on default branch and merge requests if they change code or profile files.
This commit is contained in:
parent
549ce5bc4b
commit
5b950589ac
@ -40,6 +40,9 @@ build_short:
|
|||||||
- BUILD_SCRIPT_ARGS: baseline bootstrap
|
- BUILD_SCRIPT_ARGS: baseline bootstrap
|
||||||
- BUILD_SCRIPT_ARGS: releng bootstrap
|
- BUILD_SCRIPT_ARGS: releng bootstrap
|
||||||
only:
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
- merge_requests
|
||||||
changes:
|
changes:
|
||||||
- archiso/*
|
- archiso/*
|
||||||
- configs/**/*
|
- configs/**/*
|
||||||
@ -59,6 +62,9 @@ build_long:
|
|||||||
tags:
|
tags:
|
||||||
- fast-single-thread
|
- fast-single-thread
|
||||||
only:
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
- merge_requests
|
||||||
changes:
|
changes:
|
||||||
- archiso/*
|
- archiso/*
|
||||||
- configs/**/*
|
- configs/**/*
|
||||||
|
Loading…
Reference in New Issue
Block a user