Skip to content

Commit

Permalink
Test for discrete
Browse files Browse the repository at this point in the history
  • Loading branch information
juadde committed May 2, 2024
1 parent 9f6626a commit ec16e9c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,12 @@ jobs:
with:
name: Wireshark-plugin-alpine
- name: Run TShark on ARINC429 traffic
run: docker run -v .:/test alpine sh -c "apk add tshark && unzip /test/Wireshark_plugin.zip -d /usr && tshark -e DISCRETE.VALUE -E header=y -T fields -r /test/pcapng_files/discrete.pcapng | tee /test/discrete.output"
run: >
docker run -v .:/test alpine sh -c "
apk add tshark &&
unzip /test/Wireshark_plugin.zip -d /usr &&
tshark -e DISCRETE.VALUE -E header=y -T fields -r /test/pcapng_files/discrete.pcapng | tee /test/discrete.output
"
- name: Run diff
run: diff discrete.output test/discrete.output

Expand Down

0 comments on commit ec16e9c

Please sign in to comment.