lvra.gitlab.io/.gitlab-ci.yml
2024-08-28 20:00:07 +00:00

46 lines
842 B
YAML

variables:
GIT_SUBMODULE_STRATEGY: recursive
## GitLab defaults to:
# stages:
# - build
# - test
# - deploy
build-site:
stage: build
image: registry.gitlab.com/pages/hugo/hugo_extended
script:
- hugo
artifacts:
paths:
- public
test-html:
stage: test
image:
name: wjdp/htmltest:latest
entrypoint: [""]
cache:
key: htmltest-cache
paths:
- tmp/
script:
- htmltest
test-trailing-spaces:
stage: test
needs: [] # ok to run before build-site
script:
- ./test_trailing_spaces.sh
# The GitLab Pages job must always be named "pages", and result in a "public" artifact.
# Our "public" artifact is created above, but GitLab jobs will fetch all artifacts from previous stages.
pages:
stage: deploy
script: ls -ld public
artifacts:
paths:
- public
only:
- main