From 711ba883a9dcbb50664b0d4a40a87a7fd0fc98bd Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Sun, 4 Aug 2024 10:10:38 -0700 Subject: [PATCH] Fix GHA CI after they upgraded nodejs Same as https://github.com/AcademySoftwareFoundation/openexr/pull/1779 They upgraded to a version that requires a glibc newer than is in the pre-2023 ASWF containers. See AcademySoftwareFoundation/OpenImageIO#4324 The example build is failing, but it turns out the ci build step duplicates what happens in the validate_openexr_libs.sh script anyway, so I'm removing it from the workflow. Signed-off-by: Cary Phillips --- .github/workflows/ci_workflow.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci_workflow.yml b/.github/workflows/ci_workflow.yml index c5d715c7..32d31a53 100644 --- a/.github/workflows/ci_workflow.yml +++ b/.github/workflows/ci_workflow.yml @@ -191,6 +191,8 @@ jobs: env: CXX: ${{ matrix.cxx-compiler }} CC: ${{ matrix.cc-compiler }} + ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16 + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - name: Checkout uses: actions/checkout@v2