Skip to content

Commit

Permalink
fix gcc with memcheck build (#268)
Browse files Browse the repository at this point in the history
* backtick instead of \

* try install without sudo

* sudo
  • Loading branch information
matkonnerth authored Nov 19, 2024
1 parent cc43025 commit a0fa8cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GccDebugMemcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
working-directory: ${{ runner.temp }}/build
# Execute the build. You can specify a specific target
# with "--target <NAME>"
run: cmake --build . --config "$BUILD_TYPE"
run: sudo cmake --build . --config "$BUILD_TYPE"


- name: Test
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,9 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
- name: Build nodesetLoader
run: |
cd ./nodesetLoader && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_TESTING=ON \
-DENABLE_CONAN=ON . && \
cd ./nodesetLoader && cmake -DCMAKE_BUILD_TYPE=Release `
-DENABLE_TESTING=ON `
-DENABLE_CONAN=ON . && `
cmake --build .
- name: Test
Expand Down

0 comments on commit a0fa8cb

Please sign in to comment.