mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 10:30:52 +00:00

The build for RISC-V causes timeouts when running tests in parallel due to the CPU being emulated. Avoid the timeouts by not running parallel tests. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
23 lines
503 B
Makefile
Executable File
23 lines
503 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
dh_auto_configure -- --with-openssl --with-gnutls --without-cuse --disable-hardening
|
|
|
|
override_dh_install:
|
|
dh_install
|
|
# deploy swtpm's apparmor profile
|
|
dh_apparmor -pswtpm --profile-name=usr.bin.swtpm
|
|
|
|
override_dh_auto_test:
|
|
SWTPM_TEST_SECCOMP_OPT="--seccomp action=none" make check VERBOSE=1
|
|
|
|
override_dh_clean:
|
|
dh_clean --exclude=man/man8/swtpm-localca.8
|
|
|
|
override_dh_makeshlibs:
|
|
dh_makeshlibs --no-scripts
|