From 836573875881e14840dfae0a407e4146d5b55aa0 Mon Sep 17 00:00:00 2001 From: juadde Date: Tue, 21 May 2024 19:15:49 +0200 Subject: [PATCH] Add unzip installation --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dd31b4f..d2bf9b9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -300,7 +300,7 @@ jobs: - name: Run TShark on ARINC429 traffic run: > docker run -v .:/test debian sh -c " - apt-get update && + apt-get update unzip && apt-get install tshark lua-bitop && unzip /test/Wireshark_plugin.zip -d /usr && tshark -e A429.LABEL -e A429.WORD -e A429.SDI -e A429.SSM -e A429.DATA -e A429.PARITY -E header=y -T fields -r /test/pcapng_files/arinc429_broadcast.pcapng | tee /test/a429_broadcast.output @@ -327,7 +327,7 @@ jobs: run: > docker run -v .:/test debian sh -c " apt-get update && - apt-get install tshark && + apt-get install tshark unzip && unzip /test/Wireshark_plugin.zip -d /usr && tshark -e DISCRETE.VALUE -E header=y -T fields -r pcapng_files/discrete.pcapng | tee discrete.output "