aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: eab2ac2169392e5805b736bbcabe9b4d67f76c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
debian:
  stage: test
  image: debian:stable
  before_script:
    - apt-get -qq update && apt-get -qq install -y python python-pip
    - pip install PyYAML
  script:
    - bash tests/run.sh break

archlinux:
  stage: test
  image: archlinux/base
  before_script:
    - pacman -Sy --noconfirm && pacman -S --noconfirm python python-pip diffutils
    - pip install PyYAML
  script:
    - bash tests/run.sh break