Skip to content

Commit

Permalink
Increase CI timeout
Browse files Browse the repository at this point in the history
Add back CI install steps
  • Loading branch information
palemieux committed Jan 10, 2025
1 parent b32efbd commit e13cb4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analysis_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
run: |
ctest -T Test \
-C Release \
--timeout 7200 \
--timeout 14400 \
--output-on-failure \
-VV
working-directory: _build
Expand Down
15 changes: 7 additions & 8 deletions .github/workflows/ci_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,12 @@ jobs:
name: install_manifest
path: _build/${{ env.INSTALL_MANIFEST }}

# Remove for now to avoid the install issues with OpenJPH
# - name: Validate install
# if: ${{ inputs.validate_install == 'ON'}}
# # Validate that the build has installed the proper files by comparing against the appropriate reference manifest
# run: |
# share/ci/scripts/validate_install.py "_build/$INSTALL_MANIFEST" "share/ci/install_manifest/$INSTALL_MANIFEST"
# shell: bash
- name: Validate install
if: ${{ inputs.validate_install == 'ON'}}
# Validate that the build has installed the proper files by comparing against the appropriate reference manifest
run: |
share/ci/scripts/validate_install.py "_build/$INSTALL_MANIFEST" "share/ci/install_manifest/$INSTALL_MANIFEST"
shell: bash

- name: Set PATH for Imath/libdeflate DLLs
# When building against external Imath/libdeflate shared objects, the tests need PATH to include the dll's.
Expand All @@ -173,6 +172,6 @@ jobs:

- name: Test
run: |
ctest -T Test -C ${{ inputs.build-type }} --timeout 7200 --output-on-failure -VV
ctest -T Test -C ${{ inputs.build-type }} --timeout 14400 --output-on-failure -VV
working-directory: _build
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci_workflow_old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
run: |
ctest -T Test \
-C Release \
--timeout 7200 \
--timeout 14400 \
--output-on-failure \
-VV
working-directory: _build
Expand Down

0 comments on commit e13cb4e

Please sign in to comment.