Skip to content

Commit

Permalink
Fix: Apple Darwin CI Workflow (#205)
Browse files Browse the repository at this point in the history
* manuel-ci-fix

* reverting changes

* fix(actions): Set default Rust toolchain to stable-x86_64-apple-darwin and display Rust toolchain information

* Delete rust-toolchain.toml for reference

* Update CI workflow to use new targets from rust-toolchain.toml

* Remove commented-out default Rust toolchain setting in CI workflow

* Update CI workflow message to install and display Rust specified toolchain
  • Loading branch information
manuelinfosec authored May 14, 2024
1 parent ce237ef commit 0f52293
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust specified toolchain
- name: Install and Display Rust specified toolchain
run: rustup show

- name: Install cargo-nextest
Expand Down
6 changes: 5 additions & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[toolchain]
channel = "nightly-2023-12-03"
channel = "nightly-2023-12-03"
targets = [
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu"
]

0 comments on commit 0f52293

Please sign in to comment.