mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-15 17:12:14 +03:00
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
name: CI/CD for IIS Module
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v2/test-ci-windows
|
|
pull_request:
|
|
branches:
|
|
- v2/test-ci-windows
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Setup MSYS2
|
|
uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: UCRT64
|
|
update: true
|
|
install: >
|
|
git
|
|
make
|
|
autoconf
|
|
automake
|
|
libtool
|
|
mingw-w64-ucrt-x86_64-gcc
|
|
mingw-w64-ucrt-x86_64-pkg-config
|
|
|
|
- name: Clone and build ssdeep
|
|
shell: msys2 {0}
|
|
run: |
|
|
MSYS2_WORKSPACE=$(cygpath -u '${{ github.workspace }}')
|
|
echo "Converted workspace path: $MSYS2_WORKSPACE"
|
|
|
|
git clone https://github.com/ssdeep-project/ssdeep.git --depth 1
|
|
cd ssdeep
|
|
autoreconf -i
|
|
./configure --enable-shared --disable-static CFLAGS="-O3" CXXFLAGS="-O3"
|
|
make dll
|
|
|
|
mkdir -p "${MSYS2_WORKSPACE}/ssdeep-install/bin
|
|
mkdir -p "${MSYS2_WORKSPACE}/ssdeep-install/include
|
|
cp -v fuzzy.dll "${MSYS2_WORKSPACE}/ssdeep-install/bin/
|
|
cp -v fuzzy.h "${MSYS2_WORKSPACE}/ssdeep-install/include/
|
|
cp -v fuzzy.def "${MSYS2_WORKSPACE}/ssdeep-install/
|
|
|
|
- name: Configure CMake for IIS Module
|
|
run: |
|
|
cmake `
|
|
-DAPACHE_ROOT="C:\tools\Apache24" `
|
|
-DSSDEEP_ROOT="${{ github.workspace }}\ssdeep-install" `
|
|
-DCMAKE_INSTALL_PREFIX="${{ github.workspace }}\install" `
|
|
-DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake" `
|
|
-DWITH_SSDEEP=ON `
|
|
-DWITH_LUA=ON `
|
|
-DWITH_YAJL=ON `
|
|
-S IIS -B iis\build
|
|
|
|
- name: Build IIS Module
|
|
shell: pwsh
|
|
run: |
|
|
cmake --build iis\build --config Release
|
|
|
|
# - name: Package IIS Module with WiX
|
|
# shell: pwsh
|
|
# run: |
|
|
# $CURRENT_DIR = "${{ github.workspace }}/iis/wix"
|
|
# candle.exe -ext WixUtilExtension -ext WixUIExtension "$CURRENT_DIR\installer.wxs" -out "$CURRENT_DIR\installer.wixobj" -arch x64
|
|
# light.exe -ext WixUtilExtension -ext WixUIExtension "$CURRENT_DIR\installer.wixobj" -out "$CURRENT_DIR\installer-64.msi" |