-
Notifications
You must be signed in to change notification settings - Fork 6
46 lines (45 loc) · 1.64 KB
/
build_plugin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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' }}