misc fixes and improved security enforcement #204
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: MacOS C/C++ CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| runs-on: macos-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup ENV | |
| run: | | |
| echo "CI=false" >> "$GITHUB_ENV" | |
| - name: Test STL (debug) - no allocators | |
| run: CFLAGS="-DFIO_MEMORY_DISABLE -DFIO_MEMALT" make db/test | |
| - name: Test STL | |
| run: make test | |
| - name: Test fio_malloc speed | |
| run: make tests/malloc | |
| - name: clean | |
| run: make clean | |
| - name: Test STL in debug mode | |
| run: make db/test |