shithub: opusfile

ref: fbc3a7b4c085f59b9808b150c98b1faa85bc9001
dir: /.gitlab-ci.yml/

View raw version
# Image from https://hub.docker.com/_/gcc/ based on Debian
image: gcc:9

autotools:
  stage: build
  before_script:
    - apt-get update &&
      apt-get install -y libopus-dev libogg-dev libssl-dev
        zip
  script:
    - ./autogen.sh
    - ./configure
    - make
    - make distcheck
  tags:
    - docker

makefile:
  stage: build
  before_script:
    - apt-get update &&
      apt-get install -y libopus-dev libogg-dev libssl-dev
  script:
    - make -C unix
    - make -C unix check
  tags:
    - docker

doc:
  stage: build
  before_script:
    - apt-get update &&
      apt-get install -y doxygen graphviz
  script:
    - make -C doc
  tags:
    - docker