Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaked1 committed Jun 2, 2024
1 parent 4ebbfd5 commit 0e08d70
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/actions/install-wireshark-headers/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Install Wireshark headers
runs:
using: 'composite'
steps:
#- name: Configure Wireshark
# run: |
# mkdir wireshark/build
# cmake -B wireshark/build -S wireshark -DENABLE_CCACHE=Yes
# shell: bash
#- name: Build Wireshark
# run: make -C wireshark/build -j$(nproc)
# shell: bash
- name: Install headers
#run: sudo make -C wireshark/build install-headers
run: |
mkdir wireshark/build
sudo cmake -B wireshark/build -S wireshark -DCOMPONENT=Development -P cmake_install.cmake
shell: bash
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Release

on:
workflow_dispatch:
inputs:
tag:
description: The tag to be released, e.g. v0.1.0
required: true
pull_request:

jobs:
release:
name: Release
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
#wireshark_version: [wireshark-4.2.5]
wireshark_version: [wireshark-3.6.2]
#include:
# Ubuntu 22.04 Wireshark version
# - os: ubuntu-latest
# wireshark_version: wireshark-3.6.2

steps:
- name: Checkout code
uses: actions/checkout@v4

- 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 wireshark/tools/debian-setup.sh

- name: Install Wireshark headers (Unix)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
uses: ./.github/actions/install-wireshark-headers

- name: Build Traceeshark (Unix)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: |
make cmake
make
- name: Create distribution archive (Unix)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: make dist

0 comments on commit 0e08d70

Please sign in to comment.