diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..4a61382 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +name: default + +steps: +- name: alpine + image: alpine:3.15.0 + commands: + - export SHELL=/bin/bash # hack custom shell + - apk update + - apk add musl-locales openjdk11 make py3-virtualenv + - export LANG=es_ES.UTF-8 LANGUAGE=es_ES + - virtualenv -p python3 venv + - source venv/bin/activate + - pip install -r requirements.txt + - (cd libretube-theme/ && make compile) + - cp -v Makefile.example Makefile + - make validate |