aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-05-10 21:57:51 -0500
committerJesús <heckyel@hyperbola.info>2021-05-10 21:57:51 -0500
commite7d71d73bcd23bc12667b7db92c843e1a4cb54da (patch)
tree3dfc5046681cc8cc1a263b201621c1f9eab93be4
parente5ec52d32fb2c2219cff56ca36c8ba07b96c2a92 (diff)
downloadcl-e7d71d73bcd23bc12667b7db92c843e1a4cb54da.tar.lz
cl-e7d71d73bcd23bc12667b7db92c843e1a4cb54da.tar.xz
cl-e7d71d73bcd23bc12667b7db92c843e1a4cb54da.zip
[.drone.yml]: Revert to debian:buster
-rw-r--r--.drone.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml
index 2919bd7..5ed22ab 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -3,10 +3,15 @@ name: default
steps:
- name: test
- image: alpine:3.13.5
+ image: debian:buster
commands:
- - apk update
- - apk add musl-locales openjdk11 py3-pip make
+ - 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|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
- export LANG=es_ES.UTF-8 LANGUAGE=es_ES
- (cd cl-theme/ && make compile)