Add CI
Some checks are pending
/ setup (push) Waiting to run

This commit is contained in:
Stuart Axelbrooke 2025-05-03 20:53:44 -07:00
parent b8af34b716
commit d7fd136ef3
No known key found for this signature in database
GPG key ID: 1B0A848C29D46A35

View file

@ -0,0 +1,17 @@
on: [push]
jobs:
setup:
runs-on: self-hosted
steps:
- name: checkout
uses: actions/checkout@v4
- name: install bazel
run: wget -O bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.25.0/bazelisk-linux-amd64 && chmod +x bazel && mv bazel /home/ubuntu/bin/
- name: bazel cache
id: bazel-cache
uses: actions/cache@v3
with:
path: ~/.ce/.bazel_cache
key: bazel-cache-${{ runner.os }}-${{ hashFiles('WORKSPACE') }}
- name: test
run: bash scripts/bb_test_all