Skip to content

Add host only targets for CI #3

Add host only targets for CI

Add host only targets for CI #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
bazel-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cuda_version:
- 12_8_1
- 12_9_1
- 13_0_2
- 13_1_1
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/setup-bazel@0.19.0
with:
module-root: e2e
bazelisk-cache: true
repository-cache: true
cache-save: ${{ github.event_name != 'pull_request' }}
- name: Bazel build //:all (${{ matrix.cuda_version }})
working-directory: e2e
run: bazel build //:all --platforms //:platform_linux_amd64_cuda_${{ matrix.cuda_version }}