Skip to content

Commit

Permalink
Bump release Wireshark version to 4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaked1 committed Dec 23, 2024
1 parent 18844cc commit 44d7ce3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
# macos-14 is ARM64, macos-13 is x86-64
os: [ubuntu-latest, macos-14, macos-13, windows-latest, ubuntu_arm64]
wireshark_version: [wireshark-4.2.6, wireshark-4.4.1]
wireshark_version: [wireshark-4.2.6, wireshark-4.4.2]
include:
# Ubuntu 22.04 Wireshark package version
- os: ubuntu-latest
Expand Down Expand Up @@ -48,9 +48,9 @@ jobs:
if: matrix.wireshark_version == 'wireshark-3.6.2'
run: echo "TRACEESHARK_CMAKE_OPTIONS=-DPython3_EXECUTABLE=$(which python3.11)" >> $GITHUB_ENV

# Wireshark has compilation warnings on Wireshark 3.6.2 on Ubuntu ARM64
- name: Disable WERROR (Ubuntu ARM64, Wireshark 3.6.2)
if: matrix.os == 'ubuntu_arm64' && matrix.wireshark_version == 'wireshark-3.6.2'
# Wireshark has compilation warnings on Wireshark 3.6.2 on Ubuntu
- name: Disable WERROR (Ubuntu, Wireshark 3.6.2)
if: (matrix.os == 'ubuntu_arm64' || matrix.os == 'ubuntu-latest') && matrix.wireshark_version == 'wireshark-3.6.2'
run: echo "WERROR=n" >> $GITHUB_ENV

- name: Install dependencies (Ubuntu)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
matrix:
# macos-14 is ARM64, macos-13 is x86-64
os: [ubuntu-latest, macos-14, macos-13, windows-latest, ubuntu_arm64]
wireshark_version: [wireshark-4.2.6, wireshark-4.4.1]
wireshark_version: [wireshark-4.2.6, wireshark-4.4.2]
include:
# Ubuntu 22.04 Wireshark package version
- os: ubuntu-latest
Expand Down Expand Up @@ -73,9 +73,9 @@ jobs:
if: matrix.wireshark_version == 'wireshark-3.6.2'
run: echo "TRACEESHARK_CMAKE_OPTIONS=-DPython3_EXECUTABLE=$(which python3.11)" >> $GITHUB_ENV

# Wireshark has compilation warnings on Wireshark 3.6.2 on Ubuntu ARM64
- name: Disable WERROR (Ubuntu ARM64, Wireshark 3.6.2)
if: matrix.os == 'ubuntu_arm64' && matrix.wireshark_version == 'wireshark-3.6.2'
# Wireshark has compilation warnings on Wireshark 3.6.2 on Ubuntu
- name: Disable WERROR (Ubuntu, Wireshark 3.6.2)
if: (matrix.os == 'ubuntu_arm64' || matrix.os == 'ubuntu-latest') && matrix.wireshark_version == 'wireshark-3.6.2'
run: echo "WERROR=n" >> $GITHUB_ENV

- name: Install dependencies (Ubuntu)
Expand Down

0 comments on commit 44d7ce3

Please sign in to comment.