Redirect output of jCardSim to /dev/null, to keep its debug output out of the CI log.

The virtual card images used to do this kind of redirect. Now the consumer of the images needs to decide if they want to see virtual card debug output. We don't want to see it, by default.
This commit is contained in:
Heiko Schaefer 2022-05-16 01:42:32 +02:00
parent 7322e44efc
commit 77822e716d
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D

View file

@ -132,7 +132,7 @@ run_cardtest_smartpgp:
image: registry.gitlab.com/hkos/openpgp-card-images/smartpgp-builddeps
script:
- /etc/init.d/pcscd start
- su - -c "sh /home/jcardsim/run-card.sh" jcardsim
- su - -c "sh /home/jcardsim/run-card.sh > /dev/null" jcardsim
- cargo run -p openpgp-card-tools --bin opgpcard -- status
- cargo run -p openpgp-card-tools --bin opgpcard -- info
- cargo run -p openpgp-card-tests --bin import -- $CONFIG
@ -151,7 +151,7 @@ run_cardtest_ykneo:
image: registry.gitlab.com/hkos/openpgp-card-images/ykneo-builddeps
script:
- /etc/init.d/pcscd start
- su - -c "sh /home/jcardsim/run-card.sh" jcardsim
- su - -c "sh /home/jcardsim/run-card.sh > /dev/null" jcardsim
- cargo run -p openpgp-card-tools --bin opgpcard -- status
- cargo run -p openpgp-card-tools --bin opgpcard -- info
- cargo run -p openpgp-card-tests --bin import -- $CONFIG
@ -170,7 +170,7 @@ run_cardtest_fluffypgp:
image: registry.gitlab.com/hkos/openpgp-card-images/fluffypgp-builddeps
script:
- /etc/init.d/pcscd start
- su - -c "sh /home/jcardsim/run-card.sh" jcardsim
- su - -c "sh /home/jcardsim/run-card.sh > /dev/null" jcardsim
- cargo run -p openpgp-card-tools --bin opgpcard -- status
- cargo run -p openpgp-card-tools --bin opgpcard -- info
- cargo run -p openpgp-card-tests --bin import -- $CONFIG