mirror of
https://github.com/nodiscc/awesome-linuxaudio.git
synced 2026-03-11 17:34:33 -05:00
26 lines
514 B
YAML
26 lines
514 B
YAML
stages:
|
|
- test
|
|
- debianwiki
|
|
|
|
test:
|
|
image: ruby
|
|
before_script:
|
|
- gem install awesome_bot
|
|
- apt-get update && apt-get install -y shellcheck python3-venv
|
|
- export LC_ALL=C.UTF-8
|
|
- export LANG=C.UTF-8
|
|
script:
|
|
- make checks
|
|
only:
|
|
- master
|
|
needs: []
|
|
|
|
debianwiki:
|
|
image: debian:sid-slim
|
|
before_script:
|
|
- sed -i 's/main/main contrib non-free/g' /etc/apt/sources.list.d/debian.sources
|
|
- apt-get update && apt-get install -y make
|
|
script:
|
|
- make debianwiki
|
|
needs: []
|