Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
CCACHE_DIR: ${{ github.workspace }}/ccache_dir
GITHUB_TOKEN: ${{ github.token }}
xcodeVersion: "13.3.1" # Only affects Mac runners, and only for prerequisites.
CMAKE_BUILD_PARALLEL_LEVEL: 8 # Number of default parallel clang processes.

concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion build_scripts/ios/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ if ${cmakeBuild}; then
{
cd ${buildpath}/ios_build_file/${platform}-${arch}
echo "build ${platform} ${arch} ${targets[@]} framework start"
cmake --build . --target ${targets[@]}
cmake --build . -j --target ${targets[@]}
echo "build ${platform} ${arch} ${targets[@]} framework end"

} &
Expand Down
2 changes: 1 addition & 1 deletion build_scripts/tvos/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ if ${cmakeBuild}; then
{
cd ${buildpath}/tvos_build_file/${platform}-${arch}
echo "build ${platform} ${arch} ${targets[@]} framework start"
cmake --build . --target ${targets[@]}
cmake --build . -j --target ${targets[@]}
echo "build ${platform} ${arch} ${targets[@]} framework end"

} &
Expand Down