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 07bcfa7 commit e137c3cCopy full SHA for e137c3c
1 file changed
.github/workflows/build_glide_platform_packages.yml
@@ -218,6 +218,10 @@ jobs:
218
package_version="$(cat package_version.txt)"
219
package_arch="$(cat package_arch.txt)"
220
extra_debian_depends="$(cat extra_debian_depends.txt)"
221
+ build_jobs="$(nproc)"
222
+ if [ "${package_suffix}" = "radxa-cubie" ]; then
223
+ build_jobs=1
224
+ fi
225
cmake_args=(
226
-S . \
227
-B build-package \
@@ -234,7 +238,7 @@ jobs:
234
238
cmake_args+=(-DOPENHD_GLIDE_REQUIRE_RKMPP=ON)
235
239
fi
236
240
cmake "${cmake_args[@]}"
237
- cmake --build build-package -j"$(nproc)"
241
+ cmake --build build-package -j"${build_jobs}"
242
cmake --build build-package --target package
243
package_file="$(find build-package -maxdepth 1 -name '*.deb' -print -quit)"
244
dpkg-deb -f "${package_file}" Depends
0 commit comments