diff options
author | Darren Kulp <darren@kulp.ch> | 2020-06-20 21:58:27 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-07-27 12:31:17 +0200 |
commit | b424c17608206166b98db0e1b7da752a1e560f54 (patch) | |
tree | 8f346df3400f2aad0b76b218bdb93fe0f3ef1fd8 | |
parent | 5e7f2e9b116cd270eb3eaad9e2f6320495e97b12 (diff) |
Explicitly run four macOS jobs
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 40b02846..e7edd1cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,6 +65,18 @@ env: matrix: fast_finish: true + # Include a few jobs for spot-checking different configurations without + # invoking combinatoric explosion of Travis jobs. + include: + - os: osx + env: LLVM_VERSION="9.0" BINDGEN_JOB="test" BINDGEN_PROFILE= + - os: osx + env: LLVM_VERSION="9.0" BINDGEN_JOB="test" BINDGEN_PROFILE="--release" + - os: osx + env: LLVM_VERSION="9.0" BINDGEN_JOB="integration" BINDGEN_PROFILE= + - os: osx + env: LLVM_VERSION="9.0" BINDGEN_JOB="integration" BINDGEN_PROFILE="--release" + cache: directories: - $HOME/.cargo |