Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.07 KiB
Newer Older
mazenovi's avatar
mazenovi committed
image: ubuntu:xenial

cache:
  paths:
    - output/ # Node modules and dependencies

before_script:
  - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
  - eval $(ssh-agent -s)
  - ssh-add <(echo "$SSH_PRIVATE_KEY")
  - mkdir -p ~/.ssh
  - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'

build:
  stage: build
  script:
mazenovi's avatar
mazenovi committed
    - apt-get install -y --force-yes build-essential python-dev python-pip git nodejs nodejs-legacy npm
mazenovi's avatar
mazenovi committed
    - pip install --upgrade pip==9.0.3
    - pip install -r requirements.txt
m4z3 test's avatar
m4z3 test committed
    - cd content && npm install && cd ..
mazenovi's avatar
mazenovi committed
    - sed -i "s/RELATIVE_URLS = True/RELATIVE_URLS = False/" pelicanconf.py
mazenovi's avatar
mazenovi committed
    - apt-get install -y --force-yes locales
    - locale-gen fr_FR
    - locale-gen fr_FR.UTF-8
    - update-locale LANG=fr_FR.UTF-8
    - . /etc/default/locale
    - pelican content

  artifacts:
    untracked: true

deploy:
  stage: deploy
  dependencies:
    - build
  script:
mazenovi's avatar
mazenovi committed
    - apt-get install -y --force-yes rsync
    - rsync -az --exclude '_' -e ssh output/ $USERNAME@$HOST:~/public_html/