Skip to content

Commit 73a7169

Browse files
authored
Try to fix action
1 parent 1c69370 commit 73a7169

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/actions/Build_and_Test_cppyy/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,11 @@ runs:
143143
# Download cppyy-backend
144144
git clone --depth=1 https://github.com/compiler-research/cppyy-backend.git
145145
cd cppyy-backend
146-
mkdir -p $env:CPPINTEROP_DIR\lib build && cd build
146+
mkdir -p $env:CPPINTEROP_DIR\lib build
147+
cd build
147148
# Install CppInterOp
148-
(cd $env:CPPINTEROP_BUILD_DIR && cmake --build . --target install --parallel ${{ env.ncpus }} )
149+
(cd $env:CPPINTEROP_BUILD_DIR
150+
cmake --build . --target install --parallel ${{ env.ncpus }} )
149151
# Build and Install cppyy-backend
150152
cmake -DCppInterOp_DIR=$env:CPPINTEROP_DIR ..
151153
cmake --build . --parallel ${{ env.ncpus }}

0 commit comments

Comments
 (0)