From 9ddce586c40ed6355dd8f6b0a67ee87540d920a3 Mon Sep 17 00:00:00 2001 From: chrysn Date: Sun, 27 Oct 2024 08:42:39 +0100 Subject: [PATCH] DNM: see where the LIBCLANG_PATH set after Xtensa even after removing it from GITHUB_ENV came from --- .github/workflows/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d110b801a..b19879d5a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - partition: ["1/20", "2/20", "3/20", "4/20", "5/20", "6/20", "7/20", "8/20", "9/20", "10/20", "11/20", "12/20", "13/20", "14/20", "15/20", "16/20", "17/20", "18/20", "19/20", "20/20"] + partition: ["1/1"] steps: - name: Check out repository code @@ -68,7 +68,13 @@ jobs: # It also duplicates the path and does other things to the environment, # but setting LIBCLANG_PATH without setting CLANG_PATH breaks bindgen run: | - sed -i 's/^LIBCLANG_PATH/_XTENSA_LIBCLANG_PATH/' "$GITHUB_ENV" + sed -i 's/^LIBCLANG_PATH=/_XTENSA_LIBCLANG_PATH=/' "$GITHUB_ENV" + + - name: Investigate Xtensa mess + run: | + set -x + grep "" ~/.bashrc ~/.profile ~/exports "${GITHUB_ENV}" "${GITHUB_PATH}" + exit 1 - name: rust cache if: steps.result-cache.outputs.cache-hit != 'true'