fix tars2cpp compiler warning when field in struct is float or double #502
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++ mac | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install | |
run: brew install bison flex cmake; cmake --version | |
- name: git | |
run: git submodule update --init --recursive | |
- name: configure | |
run: mkdir build;cd build;cmake .. -DTARS_MYSQL=ON -DTARS_SSL=ON -DTARS_HTTP2=ON -DTARS_PROTOBUF=ON | |
- name: make | |
run: cd build; make -j4 | |