diff options
author | Scott <[email protected]> | 2021-04-13 22:10:20 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-13 22:10:20 +0100 |
commit | dd488b9561e8aaa28f02f79f499389f311aa3858 (patch) | |
tree | fedfb45c9a0f9ecb033b53ecffca23b83fe0ca80 /.github | |
parent | 110f6b0ed3b3f76ab09ca575d024d99f1b8efe75 (diff) |
Limit to 1 launch job for debugging the build
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bff7a2e6a..db62377f9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -37,7 +37,7 @@ jobs: - name: Build CLI and LibHB run: | export PATH="/home/runner/work/HandBrake/HandBrake/toolchains/mingw-w64-toolchain-9.2.0-linux-x86_64/mingw-w64-x86_64/bin:${PATH}" - ./configure --cross=x86_64-w64-mingw32 --enable-qsv --enable-vce --enable-nvenc --launch-jobs=$(nproc) --launch + ./configure --cross=x86_64-w64-mingw32 --enable-qsv --enable-vce --enable-nvenc --launch-jobs=1 --launch cd build make pkg.create.zip |