15 lines
364 B
YAML
15 lines
364 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
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
|