Skip to content

Fix unused errors #2461

Fix unused errors

Fix unused errors #2461

Workflow file for this run

name: Bazel
on:
schedule:
- cron: 0 0 * * *
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-linux:
name: Bazel ${{ matrix.build }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
build: ["Release"]
llbuild: ["Release"]
os: [ubuntu-latest]
timeout-minutes: 500
steps:
- name: Prep
run: |
python -m pip install lit
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: 'llvm/llvm-project'
path: 'llvm-project'
- name: Build
run: |
cd enzyme
bazel build :EnzymeStatic :enzymemlir-opt
- name: Test
run: |
cd enzyme
bazel test --test_output=errors ...