Solace SMP protocol attributes prefix to sol-smp (#28) #87
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
name: Build SMF plugin | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
MAJOR_VERSION: | |
description: "Version string for wireshark tag needed to build can be v#.#.# or v#.#.#-rc#" | |
required: false | |
default: '' | |
MINOR_VERSION: | |
description: "Minor version of the wireshark tag" | |
required: false | |
default: '' | |
PATCH_VERSION: | |
description: "Patch version of the wireshark tag" | |
required: false | |
default: '' | |
jobs: | |
# Commenting out intel mac for regular builds as it is currently broken. | |
#build_macos: | |
# uses: SolaceLabs/wireshark-smf-plugin/.github/workflows/macos.yml@main | |
# with: | |
# MAJOR_VERSION: ${{ inputs.MAJOR_VERSION || '4' }} | |
# MINOR_VERSION: ${{ inputs.MINOR_VERSION || '0' }} | |
# PATCH_VERSION: ${{ inputs.PATCH_VERSION || '5' }} | |
build_macos_arm64: | |
uses: SolaceLabs/wireshark-smf-plugin/.github/workflows/macos_arm64.yml@main | |
with: | |
MAJOR_VERSION: ${{ inputs.MAJOR_VERSION || '4' }} | |
MINOR_VERSION: ${{ inputs.MINOR_VERSION || '4' }} | |
PATCH_VERSION: ${{ inputs.PATCH_VERSION || '0' }} | |
build_windows: | |
uses: SolaceLabs/wireshark-smf-plugin/.github/workflows/windows.yml@main | |
with: | |
MAJOR_VERSION: ${{ inputs.MAJOR_VERSION || '4' }} | |
MINOR_VERSION: ${{ inputs.MINOR_VERSION || '4' }} | |
PATCH_VERSION: ${{ inputs.PATCH_VERSION || '0' }} | |
build_linux: | |
uses: SolaceLabs/wireshark-smf-plugin/.github/workflows/ubuntu.yml@main | |
with: | |
MAJOR_VERSION: ${{ inputs.MAJOR_VERSION || '4' }} | |
MINOR_VERSION: ${{ inputs.MINOR_VERSION || '4' }} | |
PATCH_VERSION: ${{ inputs.PATCH_VERSION || '0' }} |