aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-07-17 17:53:16 -0700
committerHaibo Huang <hhb@google.com>2020-07-17 17:53:16 -0700
commit293e2aa580e5695f179507500738a4c8fc65ad82 (patch)
tree50b5094b1c55ce2b1bdc01c11e9a741031561006 /.github
parent9e908cd8b17b2231e6f526b68c7f2e830422f04d (diff)
downloadbytes-293e2aa580e5695f179507500738a4c8fc65ad82.tar.gz
Upgrade rust/crates/bytes to 0.5.6
Change-Id: Ib95c402dc50956f33008f634e79291a91157cc8d
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