blob: 978e6b48bcbadf2dd7ce8dec3987c9c8b2b9db97 (
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
29
|
language: c
os:
- linux
- osx
compiler:
- clang
- gcc
# when https://github.com/travis-ci/apt-package-whitelist/issues/792 is closed, use the container-based infrastructure
#sudo: false
#addons:
# apt:
# packages:
# - mlton
# brew install mlton doesn't seem to work (https://github.com/travis-ci/travis-ci/issues/5379)
matrix:
allow_failures:
- os: osx
before_install:
- if command -v apt-get &>/dev/null; then sudo apt-get update -qq; fi
- if command -v apt-get &>/dev/null; then sudo apt-get install -y mlton; fi
- if command -v brew &>/dev/null; then brew update; fi
- if command -v brew &>/dev/null; then brew install mlton; fi
script: ./autogen.sh && ./configure && make && make test
|