We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c69370 commit 73a7169Copy full SHA for 73a7169
.github/actions/Build_and_Test_cppyy/action.yml
@@ -143,9 +143,11 @@ runs:
143
# Download cppyy-backend
144
git clone --depth=1 https://github.com/compiler-research/cppyy-backend.git
145
cd cppyy-backend
146
- mkdir -p $env:CPPINTEROP_DIR\lib build && cd build
+ mkdir -p $env:CPPINTEROP_DIR\lib build
147
+ cd build
148
# Install CppInterOp
- (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 }} )
151
# Build and Install cppyy-backend
152
cmake -DCppInterOp_DIR=$env:CPPINTEROP_DIR ..
153
cmake --build . --parallel ${{ env.ncpus }}
0 commit comments