Skip to content

Commit

Permalink
refs #??? Сборка под винду
Browse files Browse the repository at this point in the history
  • Loading branch information
izvolov committed Aug 20, 2022
1 parent ea38c4a commit 5e4b676
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Windows

on:
push:
branches:
- master
pull_request:

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-2022]
platform: [Win32, x64]
build_type: ["Debug", "Release"]

runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2

- name: Configure and build
run: |
cmake -S . -B Build\burst -A ${{matrix.platform}}
cmake --build Build\burst --config ${{matrix.build_type}} --target burst-unit-tests
- name: Test
run: |
cmake --build Build\burst --config ${{matrix.build_type}} --target check

0 comments on commit 5e4b676

Please sign in to comment.