Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

experiment with rustc-dev component #1003

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,19 @@ environment:
PROJECT_NAME: miri
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc

# branches to build
branches:
# whitelist
only:
- auto
- try
- master

cache:
- '%USERPROFILE%\.cargo'
- '%USERPROFILE%\.rustup'

install:
- set RUSTUP_DIST_SERVER=https://dev-static.rust-lang.org
# Compute the rust version we use
- set /p RUSTC_HASH=<rust-version
# Install Rust
Expand All @@ -26,13 +25,11 @@ install:
- rustup default stable
- rustup uninstall beta
- rustup component remove rust-docs & exit 0
- rustup update
# Install "master" toolchain
- cargo install rustup-toolchain-install-master & exit 0
- rustup-toolchain-install-master -f -n master %RUSTC_HASH% -c cargo -c rust-src
- rustup default master
- rustup default nightly-2019-10-16
- rustc --version
- cargo --version
- rustup component add rustc-dev

build_script:
- set RUSTFLAGS=-C debug-assertions
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ os:
dist: xenial

# Run in PRs and for bors, but not on master.
if: branch = auto OR branch = try OR type = pull_request OR type = cron
if: branch = auto OR branch = try

env:
global:
Expand Down