Deb PPA: run qemu on all threads, not just one

This commit is contained in:
Roman Lebedev 2025-09-25 20:42:04 +03:00
parent 912676097b
commit d21d263698
No known key found for this signature in database
GPG Key ID: 083C3EBB4A1689E0

View File

@ -286,8 +286,8 @@ jobs:
echo "IMAGE=$(echo ${IMAGE})" >> $GITHUB_ENV
mmdebstrap-autopkgtest-build-qemu --boot=efi --mirror "${{ env.MIRROR }}" "${{ inputs.dist-version }}" "$IMAGE"
- name: Run autopkgtest
timeout-minutes: 60
timeout-minutes: 10
if: steps.qemu-image.conclusion != 'skipped'
run: |
set -xe
autopkgtest --no-built-binaries --apt-upgrade "$GITHUB_WORKSPACE/deb-src"/*.dsc "${{ env.BUILD_DIR }}"/*.changes -- autopkgtest-virt-qemu --boot=efi "${{ env.IMAGE }}"
autopkgtest --no-built-binaries --apt-upgrade "$GITHUB_WORKSPACE/deb-src"/*.dsc "${{ env.BUILD_DIR }}"/*.changes -- autopkgtest-virt-qemu --qemu-options="-smp $(nproc --all)" --boot=efi "${{ env.IMAGE }}"