diff options
author | Jesús <heckyel@hyperbola.info> | 2021-12-25 16:13:30 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-12-25 16:13:30 -0500 |
commit | 6ae495e29b82b65c6db558cf211db74f41c865f8 (patch) | |
tree | c07e14cffae5bed8285ab13d85f633ba8c6b78a2 | |
parent | d47a3e25af7def5f57684cbe6c48a670a075b008 (diff) | |
download | libretube-6ae495e29b82b65c6db558cf211db74f41c865f8.tar.lz libretube-6ae495e29b82b65c6db558cf211db74f41c865f8.tar.xz libretube-6ae495e29b82b65c6db558cf211db74f41c865f8.zip |
[drone-ci]: remove debian and update alpine image
-rw-r--r-- | .drone.yml | 21 |
1 files changed, 1 insertions, 20 deletions
@@ -3,7 +3,7 @@ name: default steps: - name: alpine - image: alpine:3.13.7 + image: alpine:3.15.0 commands: - export SHELL=/bin/bash # hack custom shell - apk update @@ -15,22 +15,3 @@ steps: - (cd libretube-theme/ && make compile) - cp -v Makefile.example Makefile - make validate - -- name: debian - image: debian:bullseye - commands: - - export SHELL=/bin/bash # hack custom shell - - apt-get update -y - - apt-get install -y locales openjdk-11-jre virtualenv - - sed -e 's|^# es_ES.UTF-8 UTF-8|es_ES.UTF-8 UTF-8|g' -i /etc/locale.gen - - sed -e 's|^# en_US.UTF-8 UTF-8|en_US.UTF-8 UTF-8|g' -i /etc/locale.gen - - sed -e 's|^# eo UTF-8|eo UTF-8|g' -i /etc/locale.gen - - sed -e 's|^# fr_FR.UTF-8 UTF-8|fr_FR.UTF-8 UTF-8|g' -i /etc/locale.gen - - dpkg-reconfigure --frontend=noninteractive locales - - 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 |