]> andersk Git - libyaml.git/blobdiff - .travis.yml
Update libyaml homepage link in README
[libyaml.git] / .travis.yml
index dada04bc6774d99eb72cf29aac5a6c463a619b52..835a0e9a42aef6c0b660cff712f725862e76bd07 100644 (file)
@@ -1,19 +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:
-- ./bootstrap
-- ./configure
-- make test-all
-- make distclean
-- cmake .
-- make
-- make test
-- make clean
+script: tests/run-all-tests.sh
This page took 0.051067 seconds and 4 git commands to generate.