summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJason Yavorska <jyavorska@protonmail.com>2020-05-12 17:46:54 +0200
committerJason Yavorska <jyavorska@protonmail.com>2020-05-12 17:46:54 +0200
commite652e9366589bbd3e6c47daed5b9fddb168748b8 (patch)
tree927d0bd14396542c9aefae7c45e54adcee15b8fe /ci
parent49a224dbf6ddb80ee887a92ce7bfaf235429a6c2 (diff)
downloadxfce4-dev-tools-e652e9366589bbd3e6c47daed5b9fddb168748b8.tar.gz
Fix issue with default cases in template
Diffstat (limited to 'ci')
-rw-r--r--ci/build_project.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/ci/build_project.yml b/ci/build_project.yml
index 6e3b016..8b33008 100644
--- a/ci/build_project.yml
+++ b/ci/build_project.yml
@@ -10,9 +10,12 @@ build:
- ./autogen.sh
- make
rules:
+ # If there are changes to .po, never run
- changes:
- "po/*.po"
when: never
+ # Otherwise, always run
+ - when: always
translations:
stage: build
@@ -20,15 +23,21 @@ translations:
# Could validate translations, but for now just pass
- "true"
rules:
+ # If there are changes to .po, run this job
- changes:
- "po/*.po"
when: always
+ # Otherwise, never run
+ - when: never
distcheck:
stage: distcheck
script:
- make distcheck
rules:
+ # If there are changes to .po, never run
- changes:
- "po/*.po"
when: never
+ # Otherwise, always run
+ - when: always