Skip to content

Commit b824b35

Browse files
committed
Fix OOM during build
1 parent 42ed86a commit b824b35

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/sanitizer_gcc12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
- name: Generate Unix Makfiles
1818
run: cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc-12 -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/g++-12 -Btarget -G "Unix Makefiles" -DSANITIZER:BOOL=ON
1919
- name: Build
20-
run: cmake --build target --config Debug --parallel
20+
run: cmake --build target --config Debug
2121
- name: Test
2222
run: ctest --test-dir target -j10 -C Debug -T test --output-on-failure --verbose

.github/workflows/ubuntu_wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
source ./emsdk/emsdk_env.sh
2323
emcmake cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Release -Btarget
2424
- name: Build
25-
run: cmake --build target --parallel
25+
run: cmake --build target
2626
- name: Test
2727
run: ctest --test-dir target -C Release -T test --output-on-failure -VV
2828
- name: Release

.github/workflows/windows_mingw_x86_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Generate
1818
run: cmake.exe --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_C_COMPILER:FILEPATH="x86_64-w64-mingw32-gcc.exe" -DCMAKE_CXX_COMPILER:FILEPATH="x86_64-w64-mingw32-g++.exe" -Btarget -G "MinGW Makefiles"
1919
- name: Build
20-
run: cmake --build target --parallel
20+
run: cmake --build target
2121
- name: Test
2222
run: ctest --test-dir target -C Release -T test --output-on-failure -VV
2323
- name: Test Report

.github/workflows/windows_wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
./emsdk/emsdk_env.ps1
2727
emcmake.bat cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Release -Btarget
2828
- name: Build
29-
run: cmake --build target --parallel
29+
run: cmake --build target
3030
- name: Test
3131
run: ctest --test-dir target -C Release -T test --output-on-failure -VV
3232
- name: Release

0 commit comments

Comments
 (0)