aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-07-20 22:11:12 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-07-20 22:11:12 +0000
commit5c3f69fe082eb884a5c0970fe36bc28216ca592d (patch)
tree50b5094b1c55ce2b1bdc01c11e9a741031561006 /.github
parent192f5ef0d8170589b14b94f3bd16376782b9f827 (diff)
parent405dc7ae39aced6e95686372f79e1db33a8727d3 (diff)
downloadbytes-5c3f69fe082eb884a5c0970fe36bc28216ca592d.tar.gz
Upgrade rust/crates/bytes to 0.5.6 am: 293e2aa580 am: a0a16c71fa am: 405dc7ae39
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bytes/+/1361690 Change-Id: Idfd4a46aedef3effa25be46db6c368f4b3247e5f
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 164ec13..8b99832 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -66,7 +66,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust
- run: rustup update stable && rustup default stable
+ # --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
+ run: rustup update stable --no-self-update && rustup default stable
- name: Test
run: . ci/test-stable.sh test
@@ -120,7 +121,9 @@ jobs:
- uses: actions/checkout@v2
- name: Install Rust
run: rustup update nightly && rustup default nightly
- - name: TSAN / MSAN
+ - name: Install rust-src
+ run: rustup component add rust-src
+ - name: ASAN / TSAN
run: . ci/tsan.sh
# Loom