rust/ja4: Add capture files and expected output #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Borrowed from https://github.com/jonhoo/rust-ci-conf/blob/6332a3af21a58f811a681a98cd44d0f5da8a1891/.github/workflows/test.yml | |
# See the [screencast] by Jon Gjengset. | |
# | |
# [screencast]: https://www.youtube.com/watch?v=xUH-4y92jPg | |
name: test | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
required: | |
name: ubuntu / ${{ matrix.toolchain }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [stable] | |
#XXX toolchain: [stable, beta] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install ${{ matrix.toolchain }} | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- run: cargo generate-lockfile | |
if: hashFiles('rust/Cargo.lock') == '' | |
# https://twitter.com/jonhoo/status/1571290371124260865 | |
- name: cargo test | |
run: | | |
echo XXX; whoami | |
echo XXX; tshark --version || true | |
echo XXX; sudo apt update && sudo apt -y install tshark | |
echo XXX; tshark --version | |
echo XXX; pwd | |
echo XXX; ls -l ../pcap/ || true | |
RUST_BACKTRACE=full cargo test --locked --all-features --all-targets --workspace -- --nocapture | |
working-directory: rust/ | |
# https://github.com/rust-lang/cargo/issues/6669 | |
- name: cargo test --doc | |
run: cargo test --locked --all-features --doc --workspace | |
working-directory: rust/ |