-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added workflow for creating a release build (#1)
- Loading branch information
Showing
2 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Install Wireshark headers | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Configure Wireshark | ||
run: | | ||
mkdir wireshark/build | ||
cmake -G Ninja -B wireshark/build -S wireshark -DENABLE_CCACHE=Yes | ||
shell: bash | ||
- name: Install headers | ||
id: install_headers | ||
run: sudo ninja -C wireshark/build install-headers | ||
continue-on-error: true | ||
shell: bash | ||
# Install headers is not available in older versions, use the full installation instead | ||
- name: Install Wireshark | ||
id: install_wireshark | ||
if: ${{ steps.install_headers.outcome == 'failure' }} | ||
run: | | ||
ninja -C wireshark/build -j$(nproc) | ||
sudo ninja -C wireshark/build install | ||
shell: bash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: The tag to be released, e.g. v0.1.0 | ||
required: true | ||
release_body: | ||
description: Description of the release | ||
required: false | ||
|
||
jobs: | ||
create-release: | ||
name: Create release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create GitHub release | ||
id: create-release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.event.inputs.tag }} | ||
release_name: ${{ github.event.inputs.tag }} | ||
body: ${{ github.event.inputs.release_body }} | ||
draft: true | ||
prerelease: true | ||
outputs: | ||
upload_url: ${{ steps.create-release.outputs.upload_url }} | ||
|
||
build: | ||
name: Build | ||
runs-on: ${{ matrix.os }} | ||
needs: create-release | ||
strategy: | ||
matrix: | ||
# macos-14 is ARM64, macos-13 is x86-64 | ||
os: [ubuntu-latest, macos-14, macos-13] | ||
wireshark_version: [wireshark-4.2.5] | ||
include: | ||
# Ubuntu 22.04 Wireshark package version | ||
- os: ubuntu-latest | ||
wireshark_version: wireshark-3.6.2 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.inputs.tag }} | ||
|
||
- name: Clone Wireshark | ||
run: git clone --depth 1 --branch ${{ matrix.wireshark_version }} https://github.com/wireshark/wireshark | ||
|
||
- name: Install dependencies (Ubuntu) | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt update | ||
sudo apt install -y ninja-build | ||
sudo wireshark/tools/debian-setup.sh | ||
- name: Install dependencies (Macos) | ||
if: matrix.os == 'macos-14' || matrix.os == 'macos-13' | ||
run: wireshark/tools/macos-setup-brew.sh | ||
|
||
- name: Install Wireshark headers (Unix) | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-14' || matrix.os == 'macos-13' | ||
uses: ./.github/actions/install-wireshark-headers | ||
|
||
- name: Build Traceeshark (Unix) | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-14' || matrix.os == 'macos-13' | ||
run: | | ||
make cmake | ||
make | ||
- name: Create distribution archive (Unix) | ||
id: create_dist | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-14' || matrix.os == 'macos-13' | ||
run: | | ||
make dist | ||
DIST_PATH=$(ls dist/*.zip | head -n 1) | ||
DIST_NAME=$(basename $DIST_PATH) | ||
echo "dist_archive=$DIST_NAME" >> $GITHUB_ENV | ||
- name: Upload distribution archive | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ needs.create-release.outputs.upload_url }} | ||
asset_path: dist/${{ env.dist_archive }} | ||
asset_name: ${{ env.dist_archive }} | ||
asset_content_type: application/zip |