diff options
author | Jesús <heckyel@hyperbola.info> | 2021-05-10 22:04:18 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-05-10 22:04:18 -0500 |
commit | 0cbaaf20136ca983e0c53ac3204cc8fdbc684e93 (patch) | |
tree | 56a8ba4ec0e9c23b06e7832217a03bd7cbee87ce | |
parent | e7d71d73bcd23bc12667b7db92c843e1a4cb54da (diff) | |
download | cl-0cbaaf20136ca983e0c53ac3204cc8fdbc684e93.tar.lz cl-0cbaaf20136ca983e0c53ac3204cc8fdbc684e93.tar.xz cl-0cbaaf20136ca983e0c53ac3204cc8fdbc684e93.zip |
[.drone.yml]: add alpine test and disable validate
-rw-r--r-- | .drone.yml | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -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 |