mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 1.1.3 to 1.3.1. - [Release notes](https://github.com/microsoft/setup-msbuild/releases) - [Changelog](https://github.com/microsoft/setup-msbuild/blob/main/building-release.md) - [Commits](https://github.com/microsoft/setup-msbuild/compare/v1.1.3...v1.3.1) --- updated-dependencies: - dependency-name: microsoft/setup-msbuild dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
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.3.1
|
|
|
|
- name: Setup Conan
|
|
uses: turtlebrowser/get-conan@v1.2
|
|
with:
|
|
version: 1.59.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
|