Skip to content

Commit

Permalink
Merge pull request #121 from radixdlt/DO-2609
Browse files Browse the repository at this point in the history
ci: Fix rustup Toolchain version
  • Loading branch information
mstrug-rdx authored Jul 4, 2024
2 parents 9007a7c + 8a909f8 commit c5e76f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
rustup toolchain install nightly-2024-02-01
# Update both toolchains
rustup update nightly-2024-02-01-2023-11-24
rustup update nightly-2023-11-24
rustup update nightly-2024-02-01
# Add target
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Rust Toolchain
uses: RDXWorks-actions/toolchain@master
with:
toolchain: nightly-2024-02-01-2023-11-24
toolchain: nightly-2024-02-01
default: true
components: rustfmt, clippy
- name: Install cargo nextest
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install Rust Toolchain
uses: RDXWorks-actions/toolchain@master
with:
toolchain: nightly-2024-02-01-2023-11-24
toolchain: nightly-2024-02-01
default: true
components: rustfmt
- name: Check formatting
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Install Rust Toolchain
uses: RDXWorks-actions/toolchain@master
with:
toolchain: nightly-2024-02-01-2023-11-24
toolchain: nightly-2024-02-01
default: true
profile: minimal
- name: Cargo Check
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Install Rust Toolchain
uses: RDXWorks-actions/toolchain@master
with:
toolchain: nightly-2024-02-01-2023-11-24
toolchain: nightly-2024-02-01
default: true
components: rustfmt, clippy
- name: Clippy Check
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_wasm.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

cargo +nightly-2024-02-01-2023-11-24 build \
cargo +nightly-2024-02-01 build \
-Z build-std=std,panic_abort \
-Z build-std-features=panic_immediate_abort \
--manifest-path="$SCRIPT_DIR/../Cargo.toml" \
Expand Down

0 comments on commit c5e76f7

Please sign in to comment.