-
Notifications
You must be signed in to change notification settings - Fork 11
38 lines (30 loc) · 910 Bytes
/
run_tests.yml
File metadata and controls
38 lines (30 loc) · 910 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: Run Logic Tests
on:
- push
- pull_request
jobs:
run-logic-tests:
name: Run Logic Tests
runs-on: windows-latest
steps:
# Increase page size so that the compiler doesn't
# run out of memory
- name: Configure Pagefile
uses: al-cheb/configure-pagefile-action@v1.5
with:
minimum-size: 16GB
maximum-size: 16GB
disk-root: "C:"
- name: Checkout Repository
uses: actions/checkout@v6
with:
submodules: recursive
- name: Configure CMake
working-directory: ${{ github.workspace }}
run: cmake -G "MinGW Makefiles" -B build -DLOGIC_TESTS=True
- name: Build
working-directory: ${{ github.workspace }}
run: cmake --build build -j
- name: Run Tests
working-directory: ${{ github.workspace }}/build
run: ./wwhd_rando.exe