Comply with tracefile executor interface changes. #17
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: | |
branches: | |
- ckmalloc | |
pull_request: | |
jobs: | |
check-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out ckmalloc | |
uses: actions/checkout@v4 | |
with: | |
path: ckmalloc | |
submodules: recursive | |
- uses: bazelbuild/setup-bazelisk@v3 | |
- name: Mount bazel cache | |
uses: actions/cache@v4 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel | |
- name: Install clang | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 18 | |
- name: Test | |
working-directory: ckmalloc | |
run: | | |
bazel test --config=test //... |