From 93c3074474cf78af184c6b7cbcf5641018306380 Mon Sep 17 00:00:00 2001 From: Joe Richey Date: Thu, 9 Mar 2023 13:51:42 -0800 Subject: [PATCH] ci: Fix the fuchsia tests 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, ]