From 75252bca49de715e7dd181390505cd44c491e9f3 Mon Sep 17 00:00:00 2001 From: Joseph Richey Date: Thu, 9 Mar 2023 20:35:51 -0800 Subject: [PATCH] ci: Fix the fuchsia tests (#343) The target triple name was changed in https://github.com/rust-lang/rust/pull/106429 While `rustc` known the old spelling of the triple, `rustup` does not, so the toolchain download was not working. Signed-off-by: Joe Richey --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f894faa2..fbdcb1ed 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -268,7 +268,7 @@ jobs: strategy: matrix: target: [ - x86_64-fuchsia, + x86_64-unknown-fuchsia, x86_64-unknown-redox, x86_64-fortanix-unknown-sgx, ]