]> andersk Git - libyaml.git/blobdiff - .travis.yml
Add mingw-w64 builds to appveyor.yml
[libyaml.git] / .travis.yml
index 3f01806841743a633e8b0e3adabb27c2e3890b90..835a0e9a42aef6c0b660cff712f725862e76bd07 100644 (file)
@@ -1,7 +1,27 @@
 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
 
-script: ./bootstrap && ./configure && make test
+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-all-tests.sh
This page took 0.451004 seconds and 4 git commands to generate.