Skip to content

Commit

Permalink
Fix zenoh-dissector syncing (#243)
Browse files Browse the repository at this point in the history
* Fix zenoh-dissector syncing

* Install zenoh-dissector build dependencies
  • Loading branch information
fuzzypixelz authored Oct 30, 2024
1 parent 78d8f4d commit 3cc03f4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/sync-lockfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
- eclipse-zenoh/zenoh-backend-influxdb
- eclipse-zenoh/zenoh-backend-rocksdb
- eclipse-zenoh/zenoh-backend-s3
- ZettaScaleLabs/zenoh-dissector
- eclipse-zenoh/zenoh-ts
- eclipse-zenoh/zenoh-dissector
steps:
- name: Checkout ${{ matrix.dependant }}
uses: actions/checkout@v4
Expand All @@ -81,6 +81,14 @@ jobs:
- name: Install build dependencies
run: sudo apt-get install -y llvm-dev libclang-dev clang libacl1-dev

- name: Install build dependencies (zenoh-dissector)
if: ${{ matrix.dependant == 'eclipse-zenoh/zenoh-dissector' }}
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
# NOTE: Not all Zenoh dependants have their Cargo manifest and lockfile
# at the repository's toplevel. The only exception being zenoh-kotlin and
# zenoh-java. Thus the need for this ugly workaround.
Expand Down Expand Up @@ -117,6 +125,7 @@ jobs:
cargo clippy --manifest-path build-resources/opaque-types/Cargo.toml --all-targets --features $features -- --deny warnings
- name: cargo update ${{ matrix.dependant }}
if: ${{ matrix.dependant != 'eclipse-zenoh/zenoh-dissector' }}
run: cargo update zenoh --manifest-path ${{ steps.crate-path.outputs.value }}/Cargo.toml

- name: cargo update for zenoh-c build-resources
Expand Down

0 comments on commit 3cc03f4

Please sign in to comment.