mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
5096426f9e
This completely removes all Appveyor CI build jobs to move Alacritty to a singular CI provider for all platforms. To ensure that Windows is still properly tested, the allowed failure for the stable Windows build job on travis has been removed. This fixes #1679.
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
language: rust
|
|
|
|
services:
|
|
- docker
|
|
|
|
git:
|
|
depth: 1
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
rust:
|
|
- stable
|
|
- nightly
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- if: tag IS present
|
|
os: linux
|
|
rust: stable
|
|
env: ARCH=i386
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
install: ci/install.sh
|
|
script: ci/script.sh
|
|
before_deploy: ci/before_deploy.sh
|
|
|
|
deploy:
|
|
provider: releases
|
|
api_key:
|
|
secure: G6JZgC5qKZyxEmuu2eMscDO45iOhBjiCSKuO8gxywqm+4DbMZm7y2OSbQCEmnIFqEgi+DLkrH/A7e8LDngQj3lBvRnWkIcszG5ubDm8jsqckXXxjI0cy5q8jJ7s5zZXH2IdXifY59KN9V4iHPwCJlyEE7Aj9JrJLFaVhvaowlSYib9DuDibDX/2u8qZ+gP2D/TntiBlFi8SgiDPd7GrZWmNsxJR9edyYbKx9izROp+4q7KAa0Xqak/Zvg72JZnARiKPmBxESEoYYXFcRgRZD9VvjmQ/il6WcHlGSqqn1TRBtIVl8L/1I5/xBJ6KMegP9Jlh7ybm1JPfX108V5d9a9CyqvRYHrhbkHkf5oktizsgw2WyANwiBhEngliMFuUyT0826BEPtkA4TiD7lQXyvO749INdJsqUlMLLuQNpU9/7ShBcRapbGp6AjWH8yxV9ciNMpNexAaxkupYc2NaU6EAC/C34HAtTdfN+gyvrtnF1ISrPmmGj8YQRiBUsa4TxghsNPbPHWAgMfR5lFp3dONz0oIydhW/AFgpn+7BVvoIW2z8hXiRttseZHv6akeSjFC5vYObR3UdL/NiuvCjZRiYryL0Be/rI83ug8xELVFBBcv4PxcHEsXWT7EMd3QTiPoCwNKoSoBLk8hPFPAGRXULiSDFENKoJAc4A7zJyMiYY=
|
|
skip_cleanup: true
|
|
file_glob: true
|
|
file: "./target/deploy/*"
|
|
on:
|
|
tags: true
|
|
rust: stable
|
|
repo: jwilm/alacritty
|
|
branch: master
|