aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci-windows.yml
blob: f2d2ee54f0c5b1dbc06c40df5e9d0b26445ef635 (about) (plain) (blame)
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
name: Windows CI
on:
  pull_request:
  push:
  schedule:
    - cron: '0 0 * * 0'
jobs:
  build:
    if: "!contains(github.event.head_commit.message, '[skip windows ci]')"
    runs-on: windows-2019
    steps:
      - uses: actions/checkout@v3

      - name: Setup MSBuild
        uses: microsoft/setup-msbuild@v1.0.2

      - name: Setup Conan
        uses: turtlebrowser/get-conan@v1.0

      - name: Install libraries
        working-directory: ${{ github.workspace }}/win/build
        run: |
          (Get-Content ../conanfile.txt).replace('##', '') | Set-Content ../conanfile.txt
          conan install .. --build=missing

      - name: Run CMake
        working-directory: ${{ github.workspace }}/win/build
        run: |
          cmake -G "Visual Studio 16 2019" -A "x64" ..

      - name: Build InspIRCd
        working-directory: ${{ github.workspace }}/win/build
        run: |
          msbuild InspIRCd.sln /M:3 /P:Configuration=Release /P:Platform=x64 /T:ALL_BUILD /VERBOSITY:MINIMAL