Get libuv compiling under GDK #5
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: Sanitizer checks | |
| on: [push, pull_request] | |
| jobs: | |
| asan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Envinfo | |
| run: npx envinfo | |
| - name: ASAN | |
| run: | | |
| mkdir build | |
| cd build && cmake .. -DBUILD_TESTING=ON -DASAN=ON -DCMAKE_BUILD_TYPE=Debug | |
| cmake --build . && ./uv_run_tests_a | |