]> andersk Git - libyaml.git/blobdiff - .travis.yml
fix C++-compat error
[libyaml.git] / .travis.yml
index e78998662f946688455e8aeb6642b2e2ac06d509..835a0e9a42aef6c0b660cff712f725862e76bd07 100644 (file)
@@ -1,11 +1,27 @@
-os:
-- linux
-- osx
-
 language: c
 
-compiler:
-- clang
-- gcc
+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
+
+- 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-tests.sh
+script: tests/run-all-tests.sh
This page took 0.239474 seconds and 4 git commands to generate.