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:
parent
7322e44efc
commit
77822e716d
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue