summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 9ca46558ee454c8e11c58faace8cd504b7c902e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
image: gcc

stages:
  - test

before_script:
  - apt update && apt -y install autoconf automake libtool libgudev-1.0-dev autoconf-archive

test:
  stage: test
  script:
    - ./autogen.sh
    - make
    - make check
    - make install