URI:
       t.gitlab-ci.yml - ve - a minimal text editor (work in progress)
  HTML git clone git://src.adamsgaard.dk/ve
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       t.gitlab-ci.yml (459B)
       ---
            1 stages:
            2   - build
            3 
            4 build-alpine:
            5   stage: build
            6   image: alpine:edge
            7   before_script:
            8     - apk --no-cache add build-base
            9   script:
           10     - make && make install
           11 
           12 build-debian:
           13   stage: build
           14   image: debian
           15   before_script:
           16     - apt-get update
           17     - apt-get -y install gcc make
           18   script:
           19     - make && make install
           20 
           21 build-arch:
           22   stage: build
           23   image: archlinux/base
           24   before_script:
           25     - pacman -Syu --noconfirm gcc make
           26   script:
           27     - make && make install