From 83abac5c2e0f7bee1539b7ef7470aa720ae48314 Mon Sep 17 00:00:00 2001 From: Gary Hsu <223556219+Copilot@users.noreply.github.com> Date: Tue, 7 Jul 2026 14:02:41 -0700 Subject: [PATCH] Drop redundant Linux compiler env from build-linux.yml The job set CC/CXX env alongside the authoritative -D CMAKE_C_COMPILER / -D CMAKE_CXX_COMPILER configure flags, which already select the compiler; the env block was redundant. No behavior change (verified on the parallel UrlLib cleanup: both the gcc and clang Linux jobs stay green with the env removed). The Run Tests step's env (TSAN_OPTIONS / JSC_useConcurrentGC) is unaffected. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build-linux.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 49cd44a4..6b28a94e 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -24,9 +24,6 @@ jobs: build: runs-on: ubuntu-latest timeout-minutes: 15 - env: - CC: ${{ inputs.cc }} - CXX: ${{ inputs.cxx }} steps: - uses: actions/checkout@v5