Add col integrality helpers #1366
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: sanitizers-bazel | |
| #on: [push, pull_request] | |
| on: [] | |
| jobs: | |
| asan: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazelbuild/setup-bazelisk@v3 | |
| - name: Bazel clean | |
| run: bazel clean | |
| - name: Bazel build | |
| run: bazel build -c dbg --config=asan //... | |
| - name: Bazel test | |
| run: bazel test -c dbg --config=asan --runs_per_test 100 //... | |
| - name: Upload bazel-testlogs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bazel-testlogs-asan | |
| path: bazel-testlogs/ | |
| tsan: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazelbuild/setup-bazelisk@v3 | |
| - name: Bazel clean | |
| run: bazel clean | |
| - name: Bazel build | |
| run: bazel build -c dbg --config=tsan //... | |
| - name: Bazel test | |
| run: bazel test -c dbg --config=tsan --runs_per_test 100 //... | |
| - name: Upload bazel-testlogs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bazel-testlogs-tsan | |
| path: bazel-testlogs/ | |
| lsan: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazelbuild/setup-bazelisk@v3 | |
| - name: Bazel clean | |
| run: bazel clean | |
| - name: Bazel build | |
| run: bazel build -c dbg --config=lsan //... | |
| - name: Bazel test | |
| run: bazel test -c dbg --config=lsan --runs_per_test 100 //... | |
| - name: Upload bazel-testlogs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bazel-testlogs-lsan | |
| path: bazel-testlogs/ | |
| ubsan: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazelbuild/setup-bazelisk@v3 | |
| - name: Bazel clean | |
| run: bazel clean | |
| - name: Bazel build | |
| run: bazel build -c dbg --config=ubsan //... | |
| - name: Bazel test | |
| run: bazel test -c dbg --config=ubsan --runs_per_test 100 //... | |
| - name: Upload bazel-testlogs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bazel-testlogs-ubsan | |
| path: bazel-testlogs/ |