Skip to content

Commit

Permalink
Add a static Windows build to the CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotonen committed Jul 17, 2023
1 parent 0bb824c commit ce62e35
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/push-unit-tests-static-windows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Unit Tests / Required / Static / Windows
on: push

jobs:
build:
name: 'Server 2022'
runs-on: windows-2022
steps:

# Also sets up a cache for the deps
- name: Setup vcpkg
uses: lukka/run-vcpkg@abed23940f9d7bc267b0e1a21ee7b699a3794baa # v11.1
with:
vcpkgGitCommitId: f6a5d4e8eb7476b8d7fc12a56dff300c1c986131 # 2023.06.20

- name: Checkout Anura
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

# Avoid getting masked by the stale runner-default version
- name: Install Vcpkg Dependencies
run: .\vcpkg\vcpkg.exe install

- name: Install MSBuild
uses: microsoft/setup-msbuild@1ff57057b5cfdc39105cd07a01d78e9b0ea0c14c # v1.3.1

- name: Build Anura
run: msbuild -m windows/anura.sln

- name: Run Unit Tests
run: anura.exe --tests

0 comments on commit ce62e35

Please sign in to comment.