forked from xiph/rnnoise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
41 lines (36 loc) · 879 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
default:
tags:
- docker
# Image from https://hub.docker.com/_/gcc/ based on Debian
image: gcc:9
.autoconf:
stage: build
before_script:
- apt-get update &&
apt-get install -y git ${INSTALL_COMPILER} zip ${INSTALL_EXTRA}
script:
- ./autogen.sh
- ./configure --enable-x86-rtcd ${CONFIG_FLAGS} || cat config.log
- make
- make ${CHECKTARGET}
- nm $(find . -name librnnoise.a) | awk '/ T / {print $3}' | sort
variables:
INSTALL_COMPILER: gcc g++
CHECKTARGET: check
autoconf-gcc:
extends: .autoconf
variables:
CHECKTARGET: distcheck
autoconf-clang:
extends: .autoconf
variables:
INSTALL_COMPILER: clang
CC: clang
enable-assertions:
extends: .autoconf
variables:
CONFIG_FLAGS: --enable-assertions
enable-dnn-debug-float:
extends: .autoconf
variables:
CONFIG_FLAGS: --enable-dnn-debug-float