remove -bitc_bye() #2
This file contains hidden or 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: CI (Linux) | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install packages | |
| run: > | |
| sudo apt-get update && sudo apt-get install -y | |
| pkg-config libleveldb-dev libsnappy-dev libcurl4-openssl-dev | |
| libssl-dev libncurses-dev libcjson-dev | |
| - name: build (debug) | |
| run: make | |
| - name: test (fuzz + gcs) | |
| run: make check | |
| - name: build (strict warnings) | |
| run: make clean && make STRICT=1 | |
| - name: build (release) | |
| run: make clean && make BUILD=release | |
| - name: build (asan+ubsan) | |
| run: make clean && make BUILD=asan+ubsan |