Cleanup and documentation changes #113
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: Bazel Tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
cc-tests: | |
name: C++ Bazel Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel/ | |
key: bazel-cc-cache | |
- name: Ensure bazelisk is installed | |
run: bazelisk --version | |
- name: Build C++ Workspace | |
working-directory: cc | |
run: bazelisk build ... | |
- name: Test C++ Workspace (without long and eternal tests) | |
working-directory: cc | |
run: bazelisk test --test_timeout_filters=-long,-eternal ... | |
- name: Build C++ Examples | |
working-directory: examples/cc | |
run: bazelisk build ... | |
- name: Test C++ Examples | |
working-directory: examples/cc | |
run: bazelisk test ... | |
java-tests: | |
name: Java Bazel Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel/ | |
key: bazel-java-cache | |
- name: Ensure bazelisk is installed | |
run: bazelisk --version | |
- name: Build Java Workspace | |
working-directory: java | |
run: bazelisk build ... | |
- name: Test Java Workspace (without long and eternal tests) | |
working-directory: java | |
run: bazelisk test --test_timeout_filters=-long,-eternal ... | |
- name: Build Java Examples | |
working-directory: examples/java | |
run: bazelisk build ... | |
go-tests: | |
name: Go Bazel Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel/ | |
key: bazel-go-cache | |
- name: Ensure bazelisk is installed | |
run: bazelisk --version | |
- name: Build Go Workspace | |
working-directory: go | |
run: bazelisk build ... | |
- name: Test Go Workspace (without eternal tests) | |
working-directory: go | |
run: bazelisk test --test_timeout_filters=-eternal ... | |
- name: Build Go Examples | |
working-directory: examples/go | |
run: bazelisk build ... | |
pob-tests: | |
name: Privacy on Beam Bazel Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel/ | |
key: bazel-pob-cache | |
- name: Ensure bazelisk is installed | |
run: bazelisk --version | |
- name: Build Privacy on Beam Workspace | |
working-directory: privacy-on-beam | |
run: bazelisk build ... | |
- name: Test Privacy on Beam Workspace (without eternal tests) | |
working-directory: privacy-on-beam | |
run: bazelisk test --test_timeout_filters=-eternal ... | |
zetasql-build: | |
name: ZetaSQL Examples Build Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel/ | |
key: bazel-zetasql-examples-cache | |
- name: Ensure bazelisk is installed | |
run: bazelisk --version | |
- name: Build ZetaSQL Examples | |
working-directory: examples/zetasql | |
run: bazelisk build ... |