Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 821c813ec8cff44312cb8cfca912311828dfef36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: c

compiler:
  - gcc
  - clang

os:
  - linux
  - osx

env:
  - CONFIG=""
  - CONFIG="--enable-assertions"
  - CONFIG="--enable-fixed-point"
  - CONFIG="--enable-fixed-point --disable-float-api"
  - CONFIG="--enable-fixed-point --enable-assertions"

script:
  - ./autogen.sh
  - ./configure $CONFIG
  - make distcheck