fix tarsnode, when tarsregistry all down, tarsnode still can start local #318
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 |