aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-02-12 12:06:26 +0000
committerGitHub <[email protected]>2021-02-12 12:06:26 +0000
commite0fc2af1184bed5af0a74276c261c79f685fa5d7 (patch)
treea889b01d490f653970ff54320e2edcb91c1893b1 /.github/workflows/ci.yaml
parentb0f20a795d6b1f8d36d1cbe294e54ac592b98f5e (diff)
parent70f388cedba89c204131ebc81a202563a8e19437 (diff)
Merge #7651
7651: Pin Rust to 1.49.0 on CI r=jonas-schievink a=jonas-schievink Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 1850068a3..ec9ef59a8 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -53,11 +53,19 @@ jobs:
53 - name: Install Rust toolchain 53 - name: Install Rust toolchain
54 uses: actions-rs/toolchain@v1 54 uses: actions-rs/toolchain@v1
55 with: 55 with:
56 toolchain: stable 56 toolchain: 1.49.0 # FIXME: CI is failing on 1.50
57 profile: minimal 57 profile: minimal
58 override: true 58 override: true
59 components: rustfmt, rust-src 59 components: rustfmt, rust-src
60 60
61 - name: Install rustfmt
62 uses: actions-rs/toolchain@v1
63 with:
64 toolchain: stable
65 profile: minimal
66 override: false
67 components: rustfmt
68
61 - name: Cache cargo directories 69 - name: Cache cargo directories
62 uses: actions/cache@v2 70 uses: actions/cache@v2
63 with: 71 with: