Skip to content

Build/release Zeek

Build/release Zeek #30

Workflow file for this run

name: Create Zeek release
on:
workflow_dispatch:
inputs:
tag:
required: true
type: string
jobs:
release:
strategy:
matrix:
platform: [macos-12, ubuntu-20.04, windows-2019]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout build-zeek
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- name: Get OS and arch detail
run: |
echo "GOOS=$(go env GOOS)" >> $GITHUB_OUTPUT
echo "GOARCH=$(go env GOARCH)" >> $GITHUB_OUTPUT
shell: bash
id: buildinfo
- name: Print what the artifact name would be
run: echo "Artifact name would be zeek-${{ inputs.tag }}-${{ steps.buildinfo.outputs.GOOS }}-${{ steps.buildinfo.outputs.GOARCH }}"
- name: Checkout zeek
uses: actions/checkout@v3
with:
repository: zeek/zeek
ref: ${{ inputs.tag }}
fetch-depth: 1
submodules: recursive
path: zeek
- name: Build zeekrunner (Windows)
if: startsWith(matrix.platform, 'windows-')
run: go build -o zeekrunner.exe zeekrunner.go
- name: Build Zeek (Windows)
if: startsWith(matrix.platform, 'windows-')
run: |
choco install -y --no-progress conan --version=1.58.0
choco install -y --no-progress winflexbison3
call refreshenv
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
mkdir zeek\build
cd zeek\build
cmake.exe .. -DCMAKE_BUILD_TYPE=release -DENABLE_ZEEK_UNIT_TESTS=yes -D CMAKE_INSTALL_PREFIX=/usr/local/zeek -G Ninja
cmake.exe --build .
cmake.exe --install .
cd
shell: cmd
- name: Install dependencies (Linux)
if: startsWith(matrix.platform, 'ubuntu-')
run: sudo apt-get -y install cmake make gcc g++ flex libfl-dev bison libpcap-dev libssl-dev python3 python3-dev python3-setuptools swig zlib1g-dev zip
- name: Install dependencies (macOS)
if: startsWith(matrix.platform, 'macos-')
run: brew install cmake swig openssl bison flex
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores
- name: Build Zeek (non-Windows)
if: "!startsWith(matrix.platform, 'windows-')"
run: |
cd zeek
./configure --binary-package --disable-archiver --disable-auxtools --disable-broker-tests --disable-python --disable-zeekctl --enable-static-binpac --enable-static-broker
make -j${{ steps.cpu-cores.outputs.count }}
sudo make install
- name: Finish packaging release
run: ./release.sh
shell: sh
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: zeek
name: zeek-${{ inputs.tag }}-${{ steps.buildinfo.outputs.GOOS }}-${{ steps.buildinfo.outputs.GOARCH }}