diff options
| author | Steven Fackler <[email protected]> | 2016-11-11 15:41:55 +0000 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-11-11 15:41:55 +0000 |
| commit | 2dbe27d4b0782e7269656934658fb94bc97e9485 (patch) | |
| tree | a9f72f007c027c7b53e9852c38b1754b0d723b2e | |
| parent | Fix EOF detection (diff) | |
| download | rust-openssl-2dbe27d4b0782e7269656934658fb94bc97e9485.tar.xz rust-openssl-2dbe27d4b0782e7269656934658fb94bc97e9485.zip | |
Move osx builds to top of list
They take the longest, so let's get them going early on.
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 61b1a14d..314ee4ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,13 @@ env: - BUILD_OPENSSL_VERSION=1.0.1u matrix: include: + # osx 32/64 + - os: osx + env: TARGET=x86_64-apple-darwin + - os: osx + env: TARGET=i686-apple-darwin + install: brew uninstall openssl && brew install openssl --universal + # ARM-bit version compat - env: > TARGET=arm-unknown-linux-gnueabihf @@ -65,13 +72,6 @@ matrix: packages: - gcc-multilib - # osx 32/64 - - os: osx - env: TARGET=x86_64-apple-darwin - - os: osx - env: TARGET=i686-apple-darwin - install: brew uninstall openssl && brew install openssl --universal - before_install: - ./openssl/test/build.sh |