Skip to content

Merge remote-tracking branch 'origin/main' into ckmalloc #16

Merge remote-tracking branch 'origin/main' into ckmalloc

Merge remote-tracking branch 'origin/main' into ckmalloc #16

Workflow file for this run

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 //...