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

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

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

compiler:
  - clang
  - gcc
  - g++

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

env:
  - CONF_FLAGS=""
  - CONF_FLAGS="--host=i686-linux" CFLAGS=-m32

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