From 83e25b23e4867f460f7418470fa92a17d8edaac8 Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Wed, 18 Jan 2023 11:39:01 +0100 Subject: [PATCH 1/2] Disable builds for `x86_64-fuchsia` CI fails because there is no std lib: error: toolchain 'nightly-x86_64-unknown-linux-gnu' does not contain component 'rust-std' for target 'x86_64-fuchsia' --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0bdd7a444..ebdc8d5e0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -204,9 +204,9 @@ jobs: target: - wasm32-unknown-unknown - wasm32-wasi - - x86_64-fuchsia - x86_64-fortanix-unknown-sgx - x86_64-unknown-illumos + # - x86_64-fuchsia # error: toolchain 'nightly-x86_64-unknown-linux-gnu' does not contain component 'rust-std' for target 'x86_64-fuchsia' steps: - uses: actions/checkout@v3 with: From 847059f789d3eb58b59b534d0d5072e998660f05 Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Wed, 1 Mar 2023 10:26:29 +0100 Subject: [PATCH 2/2] Try using new name of fuchsia target --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ebdc8d5e0..f0152537b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -204,9 +204,9 @@ jobs: target: - wasm32-unknown-unknown - wasm32-wasi + - x86_64-unknown-fuchsia - x86_64-fortanix-unknown-sgx - x86_64-unknown-illumos - # - x86_64-fuchsia # error: toolchain 'nightly-x86_64-unknown-linux-gnu' does not contain component 'rust-std' for target 'x86_64-fuchsia' steps: - uses: actions/checkout@v3 with: