]> andersk Git - libyaml.git/blob - .travis.yml
yaml_stack_extend: guard against integer overflow
[libyaml.git] / .travis.yml
1 language: c
2
3 matrix:
4   include:
5   - os: linux
6     compiler: gcc
7     sudo: required
8   - os: linux
9     compiler: clang
10     sudo: required
11   - os: osx
12     compiler: gcc
13   - os: osx
14     compiler: clang
15
16 before_install:
17
18 # Travis branch-specific clone problem workaround:
19 - git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
20 - git fetch
21
22 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
23     pip install --user scikit-ci-addons==0.15.0;
24     ci_addons travis/install_cmake 3.2.0;
25   fi
26
27 script: tests/run-all-tests.sh
This page took 0.032389 seconds and 5 git commands to generate.