summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: d74cf8a4051fee8eb776b9aa87b31b4a01a5c1a3 (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

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