fix tarsregistry, when mysql is down not crash #319
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |