Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dressel <code@deadcode.eu>2022-04-27 00:50:19 +0300
committerMatthias Dressel <code@deadcode.eu>2022-05-06 02:52:36 +0300
commit1bd91c3e6738cafeee3289a77e936ba1d823937c (patch)
treed8bb7ec425bc55c520d2ea21e4303b2eeabcdf5f /.gitlab-ci.yml
parent9c69574d0f15e03e9376cbcf993996b4f8f3c040 (diff)
CI: Trigger documentation rebuild if configuration changes
Additionally, switch from 'only'/'except' to 'rules' which is more flexible.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6847c5f..6a100db 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -688,14 +688,14 @@ test-debian-armv7-clang-5:
build-pages:
extends: .pages-common
- except:
- refs:
- - master
+ rules:
+ - if: '$CI_COMMIT_BRANCH && $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'
pages:
extends: .pages-common
- only:
- refs:
- - master
- changes:
- - include/dav1d/*
+ rules:
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
+ changes:
+ - include/dav1d/*
+ - doc/meson.build
+ - doc/Doxyfile.in.in