Skip to content

Commit

Permalink
use realpath
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Sep 22, 2024
1 parent 5abac72 commit 812da0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ jobs:
cd Tutorials/libamrexpr
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=../../../installdir -DCMAKE_CXX_COMPILER=clang++
cmake .. -DCMAKE_PREFIX_PATH=$(realpath ../../../installdir) -DCMAKE_CXX_COMPILER=clang++
make -j4 VEBOSE=ON
./parser_test
2 changes: 1 addition & 1 deletion .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ jobs:
cd Tutorials/libamrexpr
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=../../../installdir -DCMAKE_CXX_COMPILER=g++
cmake .. -DCMAKE_PREFIX_PATH=$(realpath ../../../installdir) -DCMAKE_CXX_COMPILER=g++
make -j4 VEBOSE=ON
./parser_test
2 changes: 1 addition & 1 deletion .github/workflows/intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ jobs:
cd Tutorials/libamrexpr
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=../../../installdir -DCMAKE_CXX_COMPILER=icpx
cmake .. -DCMAKE_PREFIX_PATH=$(realpath ../../../installdir) -DCMAKE_CXX_COMPILER=icpx
make -j4 VEBOSE=ON
./parser_test

0 comments on commit 812da0f

Please sign in to comment.