aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-05-10 22:04:18 -0500
committerJesús <heckyel@hyperbola.info>2021-05-10 22:04:18 -0500
commit0cbaaf20136ca983e0c53ac3204cc8fdbc684e93 (patch)
tree56a8ba4ec0e9c23b06e7832217a03bd7cbee87ce
parente7d71d73bcd23bc12667b7db92c843e1a4cb54da (diff)
downloadcl-0cbaaf20136ca983e0c53ac3204cc8fdbc684e93.tar.lz
cl-0cbaaf20136ca983e0c53ac3204cc8fdbc684e93.tar.xz
cl-0cbaaf20136ca983e0c53ac3204cc8fdbc684e93.zip
[.drone.yml]: add alpine test and disable validate
-rw-r--r--.drone.yml16
1 files changed, 14 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml
index 5ed22ab..e788dc6 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -2,7 +2,19 @@ kind: pipeline
name: default
steps:
-- name: test
+- name: alpine
+ image: alpine:3.13.5
+ commands:
+ - apk update
+ - apk add musl-locales openjdk11 py3-pip make
+ - 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 || true
+
+steps:
+- name: debian
image: debian:buster
commands:
- apt-get update -y
@@ -16,4 +28,4 @@ steps:
- export LANG=es_ES.UTF-8 LANGUAGE=es_ES
- (cd cl-theme/ && make compile)
- cp -v Makefile.example Makefile
- - make validate
+ - make validate || true