From 878b9debc0825a142bd8db68b552e153623a9450 Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Wed, 9 Oct 2024 16:04:39 +0000 Subject: [PATCH] Run espressif tests on nightly-2024-09-25 Workaround for incompatibility of latest nightly with `asm!` in naked functions. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e9807ac..e63e963a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,8 +89,8 @@ jobs: - { rust: nightly, vendor: MSP430, options: "--atomics" } - { rust: nightly, vendor: MSP430, options: "" } # Workaround for _1token0 - - { rust: nightly, vendor: Espressif, options: "--atomics --ident-formats-theme legacy" } - - { rust: nightly, vendor: Espressif, options: "--ident-format register:::Reg" } + - { rust: nightly-2024-09-25, vendor: Espressif, options: "--atomics --ident-formats-theme legacy" } + - { rust: nightly-2024-09-25, vendor: Espressif, options: "--ident-format register:::Reg" } steps: - uses: actions/checkout@v4