Skip to content

Commit

Permalink
Fix fragile path
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Jan 11, 2025
1 parent b9d762e commit e103346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
cmake -DBUILD_TESTING:BOOL=OFF $GITHUB_WORKSPACE
cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_TESTING:BOOL=OFF $GITHUB_WORKSPACE
make
sudo make install
- name: Checkout CVE test repository
Expand All @@ -45,5 +45,5 @@ jobs:
- name: Run regression tests
run: |
cd cve_hdf5
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/HDF_Group/HDF5/2.0.0/lib"
./test_hdf5_cve.sh /usr/local/HDF_Group/HDF5/2.0.0/bin ./cve_out
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
./test_hdf5_cve.sh /usr/local/bin ./cve_out

0 comments on commit e103346

Please sign in to comment.