ref: 4a6dd6971b2ca0f4a7aa5caf8f7611c67c6a1455
parent: ecd50e531fbf378499a3f71cdca05ad969c2e29f
author: Tristan Matthews <[email protected]>
date: Wed Apr 19 07:08:37 EDT 2023
CI: use debian based image This is closer to what is already being done in libopusenc et al. Signed-off-by: Mark Harris <[email protected]>
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,16 +1,14 @@
-image: alpine
-
-build-gcc:
+default:
tags:
- docker
+ # Image from https://hub.docker.com/_/gcc/ based on Debian
+ image: gcc:9
+autoconf:
stage: build
-
before_script:
- - apk update
- - apk add musl-dev git make gcc automake autoconf libtool file gzip zip xz
- - apk add linux-headers libogg-dev opus-dev opusfile-dev flac-dev libpcap-dev
-
+ - apt-get update &&
+ apt-get install -y libogg-dev libopus-dev libopusfile-dev libflac-dev libpcap-dev zip
script:
# build libopusenc
- git clone "https://gitlab.xiph.org/xiph/libopusenc.git"