.drone.yml 459 B

123456789101112131415161718
  1. kind: pipeline
  2. name: default
  3. steps:
  4. - name: alpine
  5. image: alpine:3.15.0
  6. commands:
  7. - export SHELL=/bin/bash # hack custom shell
  8. - apk update
  9. - apk add musl-locales openjdk11 make py3-virtualenv
  10. - export LANG=es_ES.UTF-8 LANGUAGE=es_ES
  11. - virtualenv -p python3 venv
  12. - source venv/bin/activate
  13. - pip install -r requirements.txt
  14. - (cd libretube-theme/ && make compile)
  15. - cp -v Makefile.example Makefile
  16. - make validate