mikaela.github.io/.gitlab-ci.yml

46 lines
981 B
YAML
Raw Normal View History

image: alpine:latest
2022-05-01 21:18:34 +02:00
variables:
JEKYLL_ENV: production
LC_ALL: en_US.utf8
TERM: dumb
cache:
paths:
- ${PRE_COMMIT_HOME}
- ${CI_PROJECT_DIR}/bundle
2022-05-01 21:18:34 +02:00
before_script:
2023-05-22 20:12:07 +02:00
- apk add --no-cache ruby ruby-dev ruby-bundler make gcc g++ musl-dev
2022-05-01 21:18:34 +02:00
- bundle install
test:
stage: test
script:
2023-02-22 19:28:38 +01:00
- bundle exec jekyll build -d test
2022-05-01 21:18:34 +02:00
artifacts:
paths:
2023-02-22 19:28:38 +01:00
- test
2022-05-01 21:18:34 +02:00
rules:
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
pages:
stage: deploy
script:
2023-02-22 19:28:38 +01:00
- bundle exec jekyll build -d public
2022-05-01 21:18:34 +02:00
artifacts:
paths:
2023-02-22 19:28:38 +01:00
- public
2022-05-01 21:18:34 +02:00
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
gitlab-ci-pre-commit:
stage: build
before_script:
- apk add --no-cache python3 python3-dev py3-pip py3-wheel git gcc musl-dev bash nodejs-current npm ruby ruby-bundler
- pip install pre-commit --break-system-packages
script:
- pre-commit run --all-files --show-diff-on-failure
variables:
PRE_COMMIT_HOME: ${CI_PROJECT_DIR}/.cache/pre-commit