Skip to content

Commit

Permalink
windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fmozafari committed Jul 9, 2021
1 parent e7199a0 commit 43992c3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Windows CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: windows-latest
name: Visual Studio

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Create build directory
run: mkdir build
- name: Run CMake
run: cmake -G "Visual Studio 16 2019" -DANGEL_TEST=ON ..
working-directory: ./build
- name: Build angel
run: |
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" angel.sln
working-directory: ./build
shell: cmd
- name: Run tests
run: |
cd build
.\test\Debug\run_tests "~[quality]"

0 comments on commit 43992c3

Please sign in to comment.