2018-11-10 22:51:01 +00:00
|
|
|
image: ruby:2.5.3
|
2018-11-10 22:26:23 +00:00
|
|
|
|
|
|
|
variables:
|
|
|
|
JEKYLL_ENV: production
|
|
|
|
LC_ALL: C.UTF-8
|
|
|
|
|
|
|
|
before_script:
|
2018-11-18 16:05:08 +00:00
|
|
|
- 'which rsync || ( apt-get update -qq && apt-get install rsync -yqq )'
|
2018-11-18 16:07:00 +00:00
|
|
|
- eval $(ssh-agent -s)
|
2018-11-13 20:19:19 +00:00
|
|
|
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- chmod 700 ~/.ssh
|
|
|
|
- echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
|
|
|
|
- chmod 644 ~/.ssh/known_hosts
|
2018-11-10 22:26:23 +00:00
|
|
|
- bundle install
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- bundle exec jekyll build -d test
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- test
|
|
|
|
except:
|
|
|
|
- master
|
|
|
|
|
|
|
|
pages:
|
|
|
|
stage: deploy
|
|
|
|
script:
|
|
|
|
- bundle exec jekyll build -d public
|
2018-11-18 16:05:08 +00:00
|
|
|
- rsync -aqz public/ cotech@webarch2.co.uk:sites/default/
|
2018-11-10 22:26:23 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
only:
|
|
|
|
- master
|