subrepo: subdir: "deps/libyaml" merged: "2c891fc" upstream: origin: "https://github.com/yaml/libyaml.git" branch: "0.2.5" commit: "2c891fc" git-subrepo: version: "0.4.6" origin: "???" commit: "???"
29 lines
536 B
YAML
29 lines
536 B
YAML
language: c
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
sudo: required
|
|
- os: linux
|
|
compiler: clang
|
|
sudo: required
|
|
- os: osx
|
|
compiler: gcc
|
|
- os: osx
|
|
compiler: clang
|
|
|
|
before_install:
|
|
|
|
# Travis branch-specific clone problem workaround:
|
|
- git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
|
|
- git fetch
|
|
- env | sort
|
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
pip install --user scikit-ci-addons==0.15.0;
|
|
ci_addons travis/install_cmake 3.2.0;
|
|
fi
|
|
|
|
script: tests/run-all-tests.sh
|