Skip to content

Commit

Permalink
chore: Disabled parallel builds
Browse files Browse the repository at this point in the history
  • Loading branch information
EduMenges committed May 21, 2024
1 parent 52ce42b commit 14efe3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Android-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
run: cmake -S build/Android/ -DANDROID_ABI="arm64-v8a" -B build/Android/Release -DCMAKE_ANDROID_NDK=$ANDROID_NDK -DANDROID_TOOLCHAIN=clang -DCMAKE_BUILD_TYPE=Release

- name: Build project
run: cmake --build build/Android/Release --config Release --parallel
run: cmake --build build/Android/Release --config Release
2 changes: 1 addition & 1 deletion .github/workflows/OSX-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
run: cmake -S build/OSX -B build/OSX/Release -DCMAKE_BUILD_TYPE=Release

- name: Compile
run: cmake --build build/OSX/Release --config Release --parallel
run: cmake --build build/OSX/Release --config Release
2 changes: 1 addition & 1 deletion .github/workflows/iOS-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
run: cmake -S build/iOS -B build/iOS/Release -DCMAKE_BUILD_TYPE=Release -DiOS_ABI=arm64-v8a -DIOS_ARCH="arm64" -DENABLE_ARC=0 -DENABLE_BITCODE=0 -DENABLE_VISIBILITY=1 -DCMAKE_OSX_ARCHITECTURES=arm64 -DCMAKE_SYSTEM_PROCESSOR=arm64 -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/build/iOS/iOS.cmake

- name: Build project
run: cmake --build build/iOS/Release --config Release --parallel
run: cmake --build build/iOS/Release --config Release

0 comments on commit 14efe3e

Please sign in to comment.