make JointPhysics dont treat warning as error when compile #364
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: Build Windows | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
# windows 10 with latest image | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
configuration: [debug, release] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Build | |
run: ./build_windows.bat ${{matrix.configuration}} |