Skip to content

Commit

Permalink
CI: Fix Catalyst CMAKE_PREFIX_PATH (#4067)
Browse files Browse the repository at this point in the history
## Summary

This appears to be a typo:
- env variable is `CMAKE_PREFIX_PATH`
- on Unix, paths are separated by `:` (Windows is `;`)

## Additional background

Follow-up to #4011

cc @ChristosT @c-wetterer-nelson

## Checklist

The proposed changes:
- [ ] fix a bug or incorrect behavior in AMReX
- [ ] add new capabilities to AMReX
- [ ] changes answers in the test suite to more than roundoff level
- [ ] are likely to significantly affect the results of downstream AMReX
users
- [ ] include documentation in the code and/or rst files, if appropriate
  • Loading branch information
ax3l committed Aug 6, 2024
1 parent 1c30e1f commit 361d0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/catalyst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
CXX: g++
CC: gcc
CMAKE_PREFIX: "/opt/conduit;/opt/catalyst"
CMAKE_PREFIX_PATH: "/opt/conduit:/opt/catalyst"
container:
image: kitware/paraview:ci-catalyst-amrex-warpx-20240701
steps:
Expand Down

0 comments on commit 361d0fd

Please sign in to comment.