[.drone.yml]: Revert to debian:buster

This commit is contained in:
Jesús 2021-05-10 21:57:51 -05:00
parent e5ec52d32f
commit e7d71d73bc
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -3,10 +3,15 @@ name: default
steps: steps:
- name: test - name: test
image: alpine:3.13.5 image: debian:buster
commands: commands:
- apk update - apt-get update -y
- apk add musl-locales openjdk11 py3-pip make - 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|eo 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 - pip3 install babel beautifulsoup4 html5validator markdown pelican
- export LANG=es_ES.UTF-8 LANGUAGE=es_ES - export LANG=es_ES.UTF-8 LANGUAGE=es_ES
- (cd cl-theme/ && make compile) - (cd cl-theme/ && make compile)