Update ubuntu22.yml #5
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: Ubuntu 20.04 CI (GCC 9) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ubuntu-build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use cmake with address sanitizer | |
run: | | |
mkdir build && | |
cd build && | |
cmake -DSIMDUTF_SANITIZE=ON .. && | |
cmake --build . && | |
ctest -j --output-on-failure | |
- name: Use cmake with undefined behavior sanitizer | |
run: | | |
mkdir buildundef && | |
cd buildundef && | |
cmake -DSIMDUTF_SANITIZE_UNDEFINED=ON .. && | |
cmake --build . && | |
ctest -j --output-on-failure |