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

.travis.yml - github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d7d9c0c83d9099e5fb6d7446d851daf5364b730 (plain)
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
sudo: false # use new container
language: c

branches:
  except: /^(gh-pages|v[0-9]\..*)/

compiler:
  - clang
  - gcc
  - g++

addons:
  apt:
    packages:
      - nasm
      - gcc-multilib
      - g++-multilib

env:
  - CONF_FLAGS="" DISTCHECK=1
  - CONF_FLAGS="--without-simd"
  - CONF_FLAGS="--host=i686-linux" CFLAGS=-m32

script:
  - ./bootstrap
  - ./configure $CONF_FLAGS
  - make CFLAGS="$CFLAGS -O2 -Wall -Wwrite-strings -Werror"
  - test -z "$DISTCHECK" || make distcheck