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 8f23087
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/push-unit-tests-static-windows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Unit Tests / Required / Static / Windows
on: push

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

- name: Checkout Vcpkg
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
repository: Microsoft/vcpkg
ref: f6a5d4e8eb7476b8d7fc12a56dff300c1c986131 # 2023.06.20
path: vcpkg

- name: Setup Vcpkg
run: |
vcpkg/bootstrap-vcpkg.bat
vcpkg integrate install
- name: Checkout Anura
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- name: Install Vcpkg Dependencies
run: vcpkg 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 8f23087

Please sign in to comment.