-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 841 Bytes
/
windows.yml
File metadata and controls
38 lines (31 loc) · 841 Bytes
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
35
36
37
38
name: Windows
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
windows-msvc:
runs-on: windows-latest
name: Windows MSVC
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: choco install --no-progress --yes cmake
- name: Build tests
run: |
cmake tests -B build
cmake --build build --config RelWithDebInfo --parallel
- name: Run Unit Tests
run: build\RelWithDebInfo\tests.exe
- name: Build examples
run: |
cmake examples -B build2
cmake --build build2 --config RelWithDebInfo --parallel
- name: Build benchmarks
run: |
cmake bench -B build3
cmake --build build3 --config RelWithDebInfo --parallel