tabbed

[fork] customized build of tabbed, the suckless tab manager
git clone git://src.adamsgaard.dk/tabbed
Log | Files | Refs | README | LICENSE Back to index

.gitlab-ci.yml (689B)


      1 build-alpine:
      2   stage: build
      3   image: alpine:edge
      4   before_script:
      5     - apk --no-cache add build-base autoconf libx11-dev libxft-dev git xprop
      6   script:
      7     - make tabbed/tabbed
      8   artifacts:
      9     paths:
     10       - tabbed/tabbed
     11 
     12 build-debian:
     13   stage: build
     14   image: debian
     15   before_script:
     16     - apt-get update
     17     - apt-get -y install autoconf make gcc libx11-dev libxft-dev git x11-utils
     18   script:
     19     - make tabbed/tabbed
     20   artifacts:
     21     paths:
     22       - tabbed/tabbed
     23 
     24 build-arch:
     25   stage: build
     26   image: archlinux/base
     27   before_script:
     28     - pacman -Syu --noconfirm base-devel libx11 libxft xorg-xprop git
     29   script:
     30     - make tabbed/tabbed
     31   artifacts:
     32     paths:
     33       - tabbed/tabbed