summaryrefslogtreecommitdiff
path: root/.github/workflows/build-windows.yml
blob: 6157b6b16a8d8d61d364236b1616a3826496e929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Windows Builder

on: [push, pull_request]

jobs:
  windows-build:
    runs-on: windows-2019
    strategy:
      fail-fast: false
    steps:
      - uses: actions/checkout@v3
      - uses: microsoft/setup-msbuild@v1.1
      - name: Install WinPcap
        run: |
          Invoke-WebRequest http://www.winpcap.org/install/bin/WpdPack_4_1_2.zip -OutFile WpdPack.zip
          Expand-Archive WpdPack.zip
      - name: Build 64-bit
        shell: cmd
        run: |
          .\win32\msvcbuild.bat x64