From 9d565f76d8f9060b7aa76f089553dbce2d9de769 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Sun, 17 Nov 2024 21:49:41 -0800 Subject: [PATCH] env Signed-off-by: Cary Phillips --- .github/workflows/ci_steps.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_steps.yml b/.github/workflows/ci_steps.yml index 56c14fc19..ef9a0188d 100644 --- a/.github/workflows/ci_steps.yml +++ b/.github/workflows/ci_steps.yml @@ -50,6 +50,7 @@ jobs: env: ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16 ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + INSTALL_MANIFEST: _build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt steps: @@ -90,7 +91,6 @@ jobs: -DOPENEXR_RUN_FUZZ_TESTS='OFF' \ -DCMAKE_VERBOSE_MAKEFILE='ON'" echo "CMAKE_COMMAND=$CMAKE_COMMAND" >> $GITHUB_ENV - echo "INSTALL_MANIFEST=_build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt" >> $GITHUB_ENV working-directory: _build shell: bash @@ -109,17 +109,17 @@ jobs: - name: Prepare install_manifest run: | - echo "# $CMAKE_COMMAND" > "_build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt" - sort _build/install_manifest.txt | sed -e "s:^.*/_install/::" -e ":lib64/:lib/:" >> "_build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt" - echo "_build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt" - cat "_build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt" + echo "# $CMAKE_COMMAND" > "$INSTALL_MANIFEST" + sort _build/install_manifest.txt | sed -e "s:^.*/_install/::" -e ":lib64/:lib/:" >> "$INSTALL_MANIFEST" + echo "$INSTALL_MANIFEST" + cat "$INSTALL_MANIFEST" shell: bash - name: Upload install_manifest.txt uses: actions/upload-artifact@v3 with: name: install_manifest - path: "_build/install_manifest.${{ inputs.os }}.${{ inputs.build }}.txt" + path: "$INSTALL_MANIFEST" - name: Set PATH for Imath/libdeflate DLLs if: contains(inputs.os, 'windows')