Skip to content

Commit

Permalink
Merge pull request #19 from Kidsan/fix-build
Browse files Browse the repository at this point in the history
fix(build): fix build by specifying toolchain
  • Loading branch information
twitchax authored Dec 21, 2023
2 parents fa9bb97 + 243bc84 commit c191184
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
key: test
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- uses: actions-rs/cargo@v1
with:
Expand All @@ -46,7 +45,6 @@ jobs:
key: codecov
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Install tarpaulin
run: cargo install cargo-tarpaulin
Expand All @@ -72,7 +70,6 @@ jobs:
key: windows
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-12-20
target: x86_64-pc-windows-gnu
override: true
- uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -102,7 +99,6 @@ jobs:
key: linux
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-12-20
target: x86_64-unknown-linux-gnu
override: true
- uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -131,7 +127,6 @@ jobs:
key: mac
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-12-20
target: aarch64-apple-darwin
override: true
- uses: actions-rs/cargo@v1
Expand All @@ -141,4 +136,4 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: kord_aarch64-apple-darwin
path: target/aarch64-apple-darwin/release/kord
path: target/aarch64-apple-darwin/release/kord
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nightly-2023-12-20

0 comments on commit c191184

Please sign in to comment.