diff options
author | Sadie Powell <sadie@witchery.services> | 2022-03-01 05:14:31 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-03-01 05:21:28 +0000 |
commit | f2bcf449cd8722a0d252feb963244a5a3c515e38 (patch) | |
tree | 6fa381597e9112855a40b59ed1007fbddb149d6e | |
parent | 09c587bed0589bc3678e4fd4b52101cbb28501b1 (diff) |
Use windows-2019 for Windows builds.
-rw-r--r-- | .github/workflows/ci-windows.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index d3cafa0fe..bbf40d1a2 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -6,7 +6,7 @@ on: - cron: '0 0 * * 0' jobs: build: - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2 @@ -22,4 +22,4 @@ jobs: - name: Build Anope working-directory: ${{ github.workspace }}\build run: | - msbuild Anope.sln /M:3 /P:Configuration=Release /P:Platform=x64 /T:ALL_BUILD + msbuild Anope.sln /M:3 /P:Configuration=Release /P:Platform=x64 /T:ALL_BUILD /VERBOSITY:MINIMAL |