Skip to content

Commit

Permalink
wireshark workflow
Browse files Browse the repository at this point in the history
note this workflow does not include tests

Signed-off-by: Alex Bozarth <[email protected]>
  • Loading branch information
ajbozarth committed Nov 25, 2024
1 parent b1d5079 commit 1d3f07d
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,8 @@ jobs:
uses: ./.github/workflows/openssl3.yml
with:
build_main: ${{ github.event.inputs.build_main }}

wireshark:
uses: ./.github/workflows/wireshark.yml
with:
build_main: ${{ github.event.inputs.build_main }}
50 changes: 50 additions & 0 deletions .github/workflows/wireshark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build - wireshark

on:
push:
branches: [ 'main' ]
paths: ['.github/workflows/wireshark.yml', 'wireshark/**']
pull_request:
branches: [ 'main' ]
paths: ['.github/workflows/wireshark.yml', 'wireshark/**']
workflow_call:
inputs:
build_main:
description: "Build using liboqs and oqsprovider main branches"
required: false
default: false
type: boolean

env:
build-args: |
LIBOQS_TAG=main
OQSPROVIDER_TAG=main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build the Docker image
uses: docker/build-push-action@v6
with:
load: true
context: wireshark
platforms: ${{ matrix.platform }}
build-args: |
${{ (github.event.inputs.build_main == 'true') && env.build-args || null }}
tags: oqs-wireshark

0 comments on commit 1d3f07d

Please sign in to comment.