Skip to content

Commit 8641724

Browse files
authored
Merge pull request #7 from WalletConnect/fix/udeps-build
fix: udeps build
2 parents c4bc67f + 7b70fee commit 8641724

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/ci-check-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ on:
1818
rust-toolchain-formatting:
1919
description: 'The Rust version to use to check formatting'
2020
type: string
21-
default: 'nightly'
21+
default: 'stable'
2222
rust-toolchain-udeps:
2323
description: 'The Rust version to use to run udeps'
2424
type: string
25-
default: 'nightly-2024-02-04'
25+
default: 'nightly'
2626
rust-backtrace:
2727
description: 'The Rust backtrace settings'
2828
type: string

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ on:
2626
rust-toolchain-formatting:
2727
description: 'The Rust version to use to check formatting'
2828
type: string
29-
default: 'nightly'
29+
default: 'stable'
3030
rust-toolchain-udeps:
3131
description: 'The Rust version to use to run udeps'
3232
type: string
33-
default: 'nightly-2024-02-04'
33+
default: 'nightly'
3434
rust-backtrace:
3535
description: 'The Rust backtrace settings'
3636
type: string

docs/ci-check-app.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ graph LR
2727
| name | type | description | default |
2828
|-----------------------------|-----------|--------------------------------------------------|-------------------------------|
2929
| `test-args` | `string` | The arguments to pass to the test command | `--all-features --lib --bins` |
30-
| `rust-toolchain` | `string` | The Rust version to use. | `stable` |
31-
| `rust-toolchain-formatting` | `string` | The Rust version to use to check formatting | `nightly` |
30+
| `rust-toolchain` | `string` | The Rust version to use | `stable` |
31+
| `rust-toolchain-formatting` | `string` | The Rust version to use to check formatting | `stable` |
32+
| `rust-toolchain-udeps` | `string` | The Rust version to use to run udeps | `nightly` |
3233
| `rust-backtrace` | `string` | The Rust backtrace settings | `full` |
3334
| `install-protoc` | `boolean` | Install `protoc` before running the rust tests. | `true` |
3435
| `use-sccache` | `boolean` | Install `sccache` before running the rust tests. | `true` |

docs/ci.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ graph LR
2828
| `check-infra` | `boolean` | Check and plan the infrastructure | `true` |
2929
| `check-app` | `boolean` | Check the application code | `true` |
3030
| `rust-version` | `string` | The Rust version to use. | `${{ vars.RUST_VERSION }}` |
31-
| `rust-formatting-version` | `string` | The Rust version to use to check formatting. | `nightly` |
31+
| `rust-formatting-version` | `string` | The Rust version to use to check formatting. | `stable` |
32+
| `rust-formatting-udeps` | `string` | The Rust version to use to run udeps. | `nightly` |
3233
| `rust-protoc` | `boolean` | Install `protoc` before running the rust tests. | `true` |
3334
| `rust-sccache` | `boolean` | Install `sccache` before running the rust tests. | `true` |
3435
| `version` | `string` | The version to use in the Terraform `iamge_version` variable. | `latest` |

0 commit comments

Comments
 (0)