Skip to content
Snippets Groups Projects
Commit e652e936 authored by Jason Yavorska's avatar Jason Yavorska
Browse files

Fix issue with default cases in template

parent 49a224db
No related branches found
No related tags found
1 merge request!12Fix issue with default cases in template
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment