Add drone support

This commit is contained in:
Jesús 2021-05-08 18:44:44 -05:00
parent d0e353da36
commit 3c433cab1d
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

19
.drone.yml Normal file
View File

@ -0,0 +1,19 @@
kind: pipeline
name: default
steps:
- name: test
image: debian:buster
commands:
- apt-get update -y
- apt-get install -y locales openjdk-11-jre python3-pip
- sed -e 's|^# es_ES.UTF-8 UTF-8|es_ES.UTF-8 UTF-8|g' -i /etc/locale.gen
- sed -e 's|^# en_US.UTF-8 UTF-8|en_US.UTF-8 UTF-8|g' -i /etc/locale.gen
- sed -e 's|^# eo.UTF-8 UTF-8|eo.UTF-8 UTF-8|g' -i /etc/locale.gen
- sed -e 's|^# fr_FR.UTF-8 UTF-8|fr_FR.UTF-8 UTF-8|g' -i /etc/locale.gen
- dpkg-reconfigure --frontend=noninteractive locales
- pip3 install babel beautifulsoup4 html5validator markdown pelican
- export LANG=es_ES.UTF-8 LANGUAGE=es_ES
- (cd cl-theme/ && make compile)
- cp -v Makefile.example Makefile
- make validate