.gitlab-ci.yml 513 B

1234567891011121314151617
  1. image: debian
  2. before_script:
  3. - apt-get update -y
  4. - apt-get install -y locales openjdk-11-jre python3-pip
  5. - sed -i 's/# \(es_ES.UTF-8 UTF-8\)/\1/' /etc/locale.gen
  6. - sed -i 's/# \(en_US.UTF-8 UTF-8\)/\1/' /etc/locale.gen
  7. - sed -i 's/# \(eo.UTF-8 UTF-8\)/\1/' /etc/locale.gen
  8. - dpkg-reconfigure --frontend=noninteractive locales
  9. - pip3 install babel beautifulsoup4 html5validator markdown pelican
  10. - export LANG=es_ES.UTF-8 LANGUAGE=es_ES
  11. test:
  12. script:
  13. - (cd freak-theme/ && make compile)
  14. - make validate