7
0
mirror of https://gitlab.com/ubuntu-pt/open-edu.git synced 2024-07-26 22:41:11 +00:00
adistancia.ansol.org/.gitlab-ci.yml
Gustavo Silva fb84059c31 Removes except master from test job
Ensures `test` jobs will run for every source branch name.
2020-03-14 22:10:55 +00:00

29 lines
365 B
YAML

image: ruby:2.3
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
before_script:
- bundle install
test:
stage: test
script:
- bundle exec jekyll build -d test
only:
- merge_requests
artifacts:
paths:
- test
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master