Skip to content

Commit

Permalink
Specify rust version for aarch64 CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
kamirr committed Sep 2, 2023
1 parent 553c0c3 commit 27765b9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/binaries-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- master
- release/*

env:
rust_stable: 1.71.1

jobs:
build:
name: Build binaries (aarch64)
Expand All @@ -20,10 +23,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup toolchain
- name: Install Rust ${{ env.rust_stable }}
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ env.rust_stable }}
target: aarch64-unknown-linux-musl
override: true

Expand Down

0 comments on commit 27765b9

Please sign in to comment.