diff options
author | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-04-28 17:11:28 -0500 |
---|---|---|
committer | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-04-28 17:11:28 -0500 |
commit | f35a7b0e70032de2feec9f3bda09da44cf0e1073 (patch) | |
tree | 1e0e09581dd3707d0ceb93346452dd14451a8423 /.drone.yml |
first commit
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 |