not testing on stable channel for now

This commit is contained in:
Gambhiro 2017-01-20 04:35:22 +00:00
parent a7666e72d1
commit 05ec8ae92e
2 changed files with 29 additions and 25 deletions

View File

@ -9,26 +9,6 @@ env:
matrix: matrix:
include: include:
# Stable channel
- os: osx
env: TARGET=i686-apple-darwin CHANNEL=stable
- os: linux
env: TARGET=i686-unknown-linux-gnu CHANNEL=stable
addons:
apt:
packages: &i686_unknown_linux_gnu
- gcc-multilib
- os: osx
env: TARGET=x86_64-apple-darwin CHANNEL=stable
- os: linux
env: TARGET=x86_64-unknown-linux-gnu CHANNEL=stable
addons:
apt:
packages:
- nodejs
- npm
- os: linux
env: TARGET=x86_64-unknown-linux-musl CHANNEL=stable
# Beta channel # Beta channel
- os: osx - os: osx
env: TARGET=i686-apple-darwin CHANNEL=beta env: TARGET=i686-apple-darwin CHANNEL=beta
@ -58,6 +38,28 @@ matrix:
- os: linux - os: linux
env: TARGET=x86_64-unknown-linux-musl CHANNEL=nightly env: TARGET=x86_64-unknown-linux-musl CHANNEL=nightly
# Not testing on stable channel until proc_macro lands there in the next release.
# # Stable channel
# - os: osx
# env: TARGET=i686-apple-darwin CHANNEL=stable
# - os: linux
# env: TARGET=i686-unknown-linux-gnu CHANNEL=stable
# addons:
# apt:
# packages: &i686_unknown_linux_gnu
# - gcc-multilib
# - os: osx
# env: TARGET=x86_64-apple-darwin CHANNEL=stable
# - os: linux
# env: TARGET=x86_64-unknown-linux-gnu CHANNEL=stable
# addons:
# apt:
# packages:
# - nodejs
# - npm
# - os: linux
# env: TARGET=x86_64-unknown-linux-musl CHANNEL=stable
# Musl builds fail due to a bug in Rust (https://github.com/azerupi/mdBook/issues/158) # Musl builds fail due to a bug in Rust (https://github.com/azerupi/mdBook/issues/158)
allow_failures: allow_failures:
- os: linux - os: linux

View File

@ -2,11 +2,6 @@ environment:
global: global:
PROJECT_NAME: mdBook PROJECT_NAME: mdBook
matrix: matrix:
# Stable channel
- TARGET: i686-pc-windows-msvc
RUST_CHANNEL: stable
- TARGET: x86_64-pc-windows-msvc
RUST_CHANNEL: stable
# Beta channel # Beta channel
- TARGET: i686-pc-windows-msvc - TARGET: i686-pc-windows-msvc
RUST_CHANNEL: beta RUST_CHANNEL: beta
@ -18,6 +13,13 @@ environment:
- TARGET: x86_64-pc-windows-msvc - TARGET: x86_64-pc-windows-msvc
RUST_CHANNEL: nightly RUST_CHANNEL: nightly
# Not testing on stable channel until proc_macro lands there in the next release.
# # Stable channel
# - TARGET: i686-pc-windows-msvc
# RUST_CHANNEL: stable
# - TARGET: x86_64-pc-windows-msvc
# RUST_CHANNEL: stable
# Install Rust and Cargo # Install Rust and Cargo
install: install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/channel-rust-stable" - ps: Start-FileDownload "https://static.rust-lang.org/dist/channel-rust-stable"