From 16aa1eb67369f3ef12f56384be11de18855dadb2 Mon Sep 17 00:00:00 2001 From: "Sarver, Edwin" Date: Tue, 24 Sep 2024 09:50:51 -0400 Subject: [PATCH] Fix compiler panic from rustc regression in nightly --- .github/workflows/pr.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 689b57f..9c11818 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -183,7 +183,9 @@ jobs: LIB_VISA_PATH: "${{github.workflow}}" steps: - name: Tool Setup - run: rustup update nightly && rustup default nightly + # rustc regression: https://github.com/rust-lang/rust/issues/130769 + # Change to "update nightly" after resolved + run: rustup install nightly-2024-09-23 && rustup default nightly-2024-09-23 - name: Ensure Correct Target is Installed run: rustup target add ${{matrix.triple}} - name: Tool Versions