Fix signed char - by rocallahan #91
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: Linux CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-gcc9: | |
runs-on: ubuntu-latest | |
name: GNU GCC 9 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Build bill | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_CXX_COMPILER=g++-9 -DBILL_TEST=ON .. | |
make run_tests | |
- name: Run tests | |
run: | | |
cd build | |
./test/run_tests | |
build-clang11: | |
runs-on: ubuntu-latest | |
name: Clang 11 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Build bill | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_CXX_COMPILER=clang++-11 -DBILL_TEST=ON .. | |
make run_tests | |
- name: Run tests | |
run: | | |
cd build | |
./test/run_tests |