* Optimize AnyScan
, ConstScan
and ConvertingScan
by dropping cl…
#92
Workflow file for this run
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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Bazel cache | |
id: bazel-cache | |
uses: actions/cache@v2 | |
env: | |
version: 4.2.1 | |
with: | |
path: | | |
~/.cache/bazel | |
key: ${{ runner.os }}-{{ env.version }}-bazel-cache | |
- name: Install LLVM and Clang | |
uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: "17.0" | |
- name: Test ASAN | |
run: | | |
bazel test --//mbo/mope:clang_format="${LLVM_PATH}/bin/clang-format" --config=asan -c dbg //... | |
- name: Test OPT | |
run: | | |
bazel test --//mbo/mope:clang_format="${LLVM_PATH}/bin/clang-format" -c opt //... |