-
Notifications
You must be signed in to change notification settings - Fork 10
85 lines (72 loc) · 2.43 KB
/
windows.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Continuous Integration tests
name: Windows
on:
push:
branches: [main]
pull_request:
branches: [main]
# Ensure that only one instance of the workflow is run at a time for each branch/tag.
# Jobs currently running on the branch/tag will be cancelled when new commits are pushed.
# See https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency.
concurrency:
# `github.workflow` is the workflow name, `github.ref` is the current branch/tag identifier
group: ${{ format('{0}:{1}', github.workflow, github.ref) }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
windows-latest:
name: Windows Latest ${{ matrix.toolchain.name }}
strategy:
matrix:
toolchain:
- name: MSVC
c: cl
cxx: cl
# Code does not compile on GCC on windows
# - name: GCC
# c: gcc
# cxx: g++
runs-on: windows-latest
continue-on-error: true
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup CCache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}-${{ matrix.toolchain.name }}
max-size: 100M
variant: sccache
- name: Install CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: 3.27.1
ninjaVersion: 1.11.1
# This lets ninja find MSVC
- name: Add MSVC to path
uses: ilammy/msvc-dev-cmd@v1
- name: Configure CMake
shell: cmd
run: |
cmake -E make_directory build
cmake -S . -B build ^
-GNinja ^
-DCMAKE_C_COMPILER=${{ matrix.toolchain.c }} ^
-DCMAKE_CXX_COMPILER=${{ matrix.toolchain.cxx }} ^
-DCMAKE_C_COMPILER_LAUNCHER=sccache ^
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache ^
-DBUILD_TESTS=ON ^
-DCMAKE_BUILD_TYPE=Release ^
-DCI_BUILD=ON ^
-DENABLE_CLANG_TIDY=OFF
- name: Build
timeout-minutes: 30
run: cmake --build build --config Release
- name: SCCache Stats
run: sccache --show-stats
- name: Test
timeout-minutes: 10
shell: bash
run: |
build/tests/test_nuclear.exe
for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done