Skip to content

Commit

Permalink
Disable CI on non nightlies
Browse files Browse the repository at this point in the history
Currently the feature(alloc_system) prevents us from
building on stable and beta

The tracking issue is here:
rust-lang/rust#33082
  • Loading branch information
afonso360 committed Apr 5, 2017
1 parent db2a5a1 commit 3adcc97
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 30 deletions.
32 changes: 16 additions & 16 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ environment:
matrix:
### MSVC Toolchains ###
# Stable 64-bit MSVC
- channel: stable
target: x86_64-pc-windows-msvc
# - channel: stable
# target: x86_64-pc-windows-msvc
# Stable 32-bit MSVC
- channel: stable
target: i686-pc-windows-msvc
# - channel: stable
# target: i686-pc-windows-msvc
# Beta 64-bit MSVC
- channel: beta
target: x86_64-pc-windows-msvc
# - channel: beta
# target: x86_64-pc-windows-msvc
# Beta 32-bit MSVC
- channel: beta
target: i686-pc-windows-msvc
# - channel: beta
# target: i686-pc-windows-msvc
# Nightly 64-bit MSVC
- channel: nightly
target: x86_64-pc-windows-msvc
Expand All @@ -26,17 +26,17 @@ environment:

### GNU Toolchains ###
# Stable 64-bit GNU
- channel: stable
target: x86_64-pc-windows-gnu
#- channel: stable
# target: x86_64-pc-windows-gnu
# Stable 32-bit GNU
- channel: stable
target: i686-pc-windows-gnu
# - channel: stable
# target: i686-pc-windows-gnu
# Beta 64-bit GNU
- channel: beta
target: x86_64-pc-windows-gnu
# - channel: beta
# target: x86_64-pc-windows-gnu
# Beta 32-bit GNU
- channel: beta
target: i686-pc-windows-gnu
# - channel: beta
# target: i686-pc-windows-gnu
# Nightly 64-bit GNU
- channel: nightly
target: x86_64-pc-windows-gnu
Expand Down
22 changes: 8 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
language: rust
sudo: false

os:
- linux
- osx
rust:
- nightly
#- beta
#- stable

addons:
apt:
packages:
Expand All @@ -14,20 +22,6 @@ addons:

matrix:
fast_finish: true
include:
- os: linux
rust: nightly
- os: linux
rust: beta
- os: linux
rust: stable

- os: osx
rust: nightly
- os: osx
rust: beta
- os: osx
rust: stable

script:
- (cd dbgp && cargo build --verbose)
Expand Down

0 comments on commit 3adcc97

Please sign in to comment.