Enable Gitlab CI to test buildability.
This commit is contained in:
parent
bee019115e
commit
c63825bfd4
29
.gitlab-ci.yml
Normal file
29
.gitlab-ci.yml
Normal file
@ -0,0 +1,29 @@
|
||||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: recursive
|
||||
|
||||
image:
|
||||
name: klakegg/hugo:0.55.6-ext-alpine
|
||||
entrypoint:
|
||||
- /bin/sh
|
||||
- "-c"
|
||||
|
||||
build:
|
||||
script:
|
||||
- hugo --minify
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
expire_in: 3 months
|
||||
only:
|
||||
- master
|
||||
|
||||
test:
|
||||
script:
|
||||
- hugo_output=$(hugo --path-warnings --i18n-warnings)
|
||||
- echo "$hugo_output"
|
||||
- if echo "$hugo_output" | grep -q 'i18n|MISSING_TRANSLATION'; then false; else true; fi
|
||||
- if echo "$hugo_output" | grep -q 'WARN.*Duplicate target paths'; then false; else true; fi
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
expire_in: 1 month
|
Loading…
Reference in New Issue
Block a user