shithub: opus-tools

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

View raw version
default:
  tags:
  - docker
  image: debian:bookworm

autoconf:
  stage: build
  before_script:
  - apt-get update &&
    apt-get install -y autoconf gcc libtool make libogg-dev libopus-dev libopusenc-dev libopusfile-dev libflac-dev libpcap-dev xz-utils zip
  script:
  # build opus-tools
  - ./autogen.sh
  - ./configure || cat config.log
  - make check
  - make distcheck