mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-25 14:05:41 -05:00
Fix Windows CI build failure
This commit is contained in:
parent
8a83340661
commit
512461a241
2 changed files with 12 additions and 3 deletions
13
.travis.yml
13
.travis.yml
|
@ -14,7 +14,6 @@ git:
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
- windows
|
|
||||||
|
|
||||||
rust:
|
rust:
|
||||||
- 1.36.0
|
- 1.36.0
|
||||||
|
@ -39,13 +38,23 @@ matrix:
|
||||||
- name: "Clippy Windows"
|
- name: "Clippy Windows"
|
||||||
os: windows
|
os: windows
|
||||||
env: CLIPPY=true
|
env: CLIPPY=true
|
||||||
rust: stable
|
rust: stable-x86_64-pc-windows-msvc
|
||||||
- name: "Rustfmt"
|
- name: "Rustfmt"
|
||||||
os: linux
|
os: linux
|
||||||
env: RUSTFMT=true
|
env: RUSTFMT=true
|
||||||
rust: nightly
|
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:
|
allow_failures:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
|
- rust: nightly-x86_64-pc-windows-msvc
|
||||||
|
|
||||||
install: ci/install.sh
|
install: ci/install.sh
|
||||||
script: ci/script.sh
|
script: ci/script.sh
|
||||||
|
|
|
@ -1226,7 +1226,7 @@ impl<T: EventListener> ansi::Handler for Term<T> {
|
||||||
};
|
};
|
||||||
|
|
||||||
self.title = title.clone();
|
self.title = title.clone();
|
||||||
self.event_proxy.send_event(Event::Title(title.to_owned()));
|
self.event_proxy.send_event(Event::Title(title));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue