From f35a7b0e70032de2feec9f3bda09da44cf0e1073 Mon Sep 17 00:00:00 2001 From: srv Date: Mon, 28 Apr 2025 17:11:28 -0500 Subject: first commit --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .drone.yml (limited to '.drone.yml') 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 -- cgit v1.2.3