URI:
       t.gitlab-ci.yml - fffs - fast and simple shell plugin manager
  HTML git clone git://src.adamsgaard.dk/fffs
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       t.gitlab-ci.yml (427B)
       ---
            1 test-alpine:
            2   stage: test
            3   image: alpine:edge
            4   before_script:
            5     - apk --no-cache add git zsh bash
            6   script:
            7     - ./run_tests.sh
            8 
            9 test-debian:
           10   stage: test
           11   image: debian
           12   before_script:
           13     - apt-get update
           14     - apt-get -y install git zsh bash
           15   script:
           16     - ./run_tests.sh
           17 
           18 test-arch:
           19   stage: test
           20   image: archlinux/base
           21   before_script:
           22     - pacman -Syu --noconfirm git zsh bash
           23   script:
           24     - ./run_tests.sh
           25