build: Sync with eclipse-zenoh/zenoh@453b7b8 from 2024-11-15 (#17) #118
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
# | |
# Copyright (c) 2023 ZettaScale Technology | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Eclipse Public License 2.0 which is available at | |
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 | |
# which is available at https://www.apache.org/licenses/LICENSE-2.0. | |
# | |
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | |
# | |
# Contributors: | |
# ZettaScale Zenoh Team, <zenoh@zettascale.tech> | |
# | |
name: CI (Ubuntu) | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: ["**"] | |
schedule: | |
- cron: "0 6 * * 1-5" | |
env: | |
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | |
DEBIAN_FRONTEND: noninteractive | |
WIRESHARK_VERSION: 4.4 | |
jobs: | |
check: | |
name: Run checks on Ubuntu | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04, ubuntu-22.04, ubuntu-20.04] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo fmt -- --check | |
- name: Install dependencies | |
run: | | |
sudo apt install -y software-properties-common | |
sudo add-apt-repository -y ppa:wireshark-dev/stable | |
sudo apt install -y wireshark-dev | |
sudo apt install -y --allow-change-held-packages wireshark | |
- name: Clippy | |
run: cargo clippy --all-targets -- --deny warnings | |
- name: Build | |
run: cargo build --release | |
- name: Place the plugin | |
run: | | |
mkdir -p ~/.local/lib/wireshark/plugins/${{ env.WIRESHARK_VERSION }}/epan | |
cp ./target/release/libzenoh_dissector.so ~/.local/lib/wireshark/plugins/${{ env.WIRESHARK_VERSION }}/epan/libzenoh_dissector.so | |
- name: Test the sample data | |
run: | | |
sudo apt install -y tshark | |
[ $(tshark -r assets/sample-data.pcap | grep Zenoh | wc -l) -eq 7 ] || return 1 |