diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-12-21 02:18:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-21 02:18:01 +0100 |
commit | 512461a2419d5794b0c472087640191bf17e25f2 (patch) | |
tree | 72db55c18ca07ed5af9171796feeb8ab050c35be /.travis.yml | |
parent | 8a833406614b503dcd647015d3cfd239faf5cb0c (diff) | |
download | alacritty-512461a2419d5794b0c472087640191bf17e25f2.tar.gz alacritty-512461a2419d5794b0c472087640191bf17e25f2.zip |
Fix Windows CI build failure
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 458edc98..cf7dde1c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,6 @@ git: os: - linux - osx - - windows rust: - 1.36.0 @@ -39,13 +38,23 @@ matrix: - name: "Clippy Windows" os: windows env: CLIPPY=true - rust: stable + rust: stable-x86_64-pc-windows-msvc - name: "Rustfmt" os: linux env: RUSTFMT=true rust: nightly + - name: "Windows 1.36.0" + os: windows + rust: 1.36.0-x86_64-pc-windows-msvc + - name: "Windows Stable" + os: windows + rust: stable-x86_64-pc-windows-msvc + - name: "Windows Nightly" + os: windows + rust: nightly-x86_64-pc-windows-msvc allow_failures: - rust: nightly + - rust: nightly-x86_64-pc-windows-msvc install: ci/install.sh script: ci/script.sh |