Skip to content

Merge pull request #140 from lbbniu/patch-2 #314

Merge pull request #140 from lbbniu/patch-2

Merge pull request #140 from lbbniu/patch-2 #314

Workflow file for this run

name: C/C++ win
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-2019
steps:
- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: "5.32"
distribution: strawberry
- run: perl -V
- uses: actions/checkout@v3
- name: git
run: git submodule update --init --recursive
- name: configure
run: cd build; cmake --version; cmake .. -A X64
- name: make
run: cd build; cmake --build . --config release