Skip to content

Commit

Permalink
Test build changes from zeek/3576
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz committed Feb 1, 2024
1 parent 787e566 commit 65922d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- zeek-3576
tags:
- v*brim*
workflow_dispatch:
Expand All @@ -16,7 +17,7 @@ jobs:
release:
strategy:
matrix:
platform: [macos-12, ubuntu-20.04, windows-2019]
platform: [windows-2019]
runs-on: ${{ matrix.platform }}

steps:
Expand All @@ -32,7 +33,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: zeek/zeek
ref: v6.0.3
ref: topic/timw/vcpkg
fetch-depth: 1
submodules: recursive
path: zeek-src
Expand Down Expand Up @@ -61,14 +62,13 @@ jobs:
- 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
choco install -y --no-progress ccache
call refreshenv
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
mkdir zeek-src\build
cd zeek-src\build
cmake.exe .. -DCMAKE_BUILD_TYPE=release -DENABLE_ZEEK_UNIT_TESTS=yes -D CMAKE_INSTALL_PREFIX="C:\Program Files\Git\usr\local\zeek" -DLibMMDB_INCLUDE_DIR="C:\Program Files (x86)\maxminddb\include" -DLibMMDB_LIBRARY="C:\Program Files (x86)\maxminddb\lib\maxminddb.lib" -G Ninja
cmake.exe .. -DCMAKE_BUILD_TYPE=release -DCMAKE_TOOLCHAIN_FILE="auxil/vcpkg/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows-static" -DENABLE_ZEEK_UNIT_TESTS=yes -D CMAKE_INSTALL_PREFIX="C:\Program Files\Git\usr\local\zeek" -DLibMMDB_INCLUDE_DIR="C:\Program Files (x86)\maxminddb\include" -DLibMMDB_LIBRARY="C:\Program Files (x86)\maxminddb\lib\maxminddb.lib" -G Ninja
cmake.exe --build .
cmake.exe --install .
cd
Expand Down

0 comments on commit 65922d0

Please sign in to comment.