Skip to content

Commit

Permalink
env
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Nov 18, 2024
1 parent 431a5b4 commit 9d565f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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

Expand All @@ -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')
Expand Down

0 comments on commit 9d565f7

Please sign in to comment.