Skip to content

Commit 60185c8

Browse files
committed
Use community and commerical labels
1 parent 1e095ae commit 60185c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/build-ffmpeg.py

+1
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@
205205
name="ffmpeg",
206206
source_url="https://ffmpeg.org/releases/ffmpeg-7.1.tar.xz",
207207
build_arguments=[],
208+
build_parallel= plat != "Windows",
208209
)
209210

210211

scripts/cibuildpkg.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ def make_args(*, parallel: bool) -> list[str]:
8282
"""
8383
args = []
8484

85-
# do not parallelize build when running in qemu
86-
if parallel and platform.machine() not in ("aarch64", "ppc64le", "s390x"):
85+
if parallel:
8786
args.append("-j")
8887

8988
return args

0 commit comments

Comments
 (0)