refactor: split monolithic BUILD.local_cuda into template fragments #582
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 Utilities | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: "Test Utilities (bazel ${{ matrix.bazel-version }} on ${{ matrix.os }})" | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- windows-2019 | |
bazel-version: | |
# NOTE: read from .bazelversion so that we don't randomly break our | |
# ci due to latest bazel version change | |
- .bazelversion | |
- 6.5.0 | |
- 5.4.1 | |
env: | |
USE_BAZEL_VERSION: ${{ matrix.bazel-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
# conditionally override USE_BAZEL_VERSION | |
- run: if [ "${{ matrix.bazel-version }}" = ".bazelversion" ]; then echo "USE_BAZEL_VERSION=$(cat .bazelversion)" >> $GITHUB_ENV; fi | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
- run: if ("${{ matrix.bazel-version }}" -eq ".bazelversion") { echo "USE_BAZEL_VERSION=$(cat .bazelversion)" >> $env:GITHUB_ENV } | |
if: ${{ startsWith(matrix.os, 'windows') }} | |
- uses: bazelbuild/setup-bazelisk@v3 | |
- name: Mount bazel cache | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/bazel | |
key: bazel-${{ matrix.os }}-${{ matrix.bazel-version }} | |
- uses: Jimver/[email protected] | |
with: | |
cuda: 11.6.2 | |
sub-packages: '["cudart"]' | |
method: network | |
- run: bazelisk test -- //tests/... | |
- run: bazelisk shutdown |