summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 8633f76c7ad04577d3463d1aae82ef271b443003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Image from https://hub.docker.com/_/gcc/ based on Debian
image: gcc

build:
  stage: build
  before_script:
    - apt-get update &&
      apt-get install -y libogg-dev zip doxygen
  script:
    - ./autogen.sh
    - ./configure
    - make
    - make distcheck
  cache:
    paths:
      - "lib/*.o"
      - "lib/.libs/*.o"
  tags:
    - docker