Skip to content

Configure CI

Configure CI #2

Workflow file for this run

name: Test Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- name: Install NASM
run: |
choco install --no-progress nasm
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
timeout-minutes: 60
run: |
mkdir build
echo "##[group]CMake Configure"; cmake -S . -B build; echo "##[endgroup]"
echo "##[group]CMake Build"; cmake --build build; echo "##[endgroup]"