Skip to content

Update EnzymeAD/Enzyme-JAX to commit fd7b29782578e8d17c8e896d7fc88ee8549903e3 #433

Update EnzymeAD/Enzyme-JAX to commit fd7b29782578e8d17c8e896d7fc88ee8549903e3

Update EnzymeAD/Enzyme-JAX to commit fd7b29782578e8d17c8e896d7fc88ee8549903e3 #433

name: "Build Reactant_jll"
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/build-reactantjll.yml"
- "deps/ReactantExtra/API.cpp"
- "deps/ReactantExtra/BUILD"
- "deps/ReactantExtra/WORKSPACE"
- "deps/ReactantExtra/workspace.bzl"
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
enzyme-jax-commit:
name: Extract ENZYMEXLA_COMMIT from WORKSPACE
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Extract ENZYMEXLA_COMMIT from WORKSPACE
id: extract_enzyme_jax_commit
run: |
ENZYMEXLA_COMMIT=$(grep -oP 'ENZYMEXLA_COMMIT = "\K[^"]+' deps/ReactantExtra/WORKSPACE)
echo "enzyme_jax_commit=$ENZYMEXLA_COMMIT" >> $GITHUB_OUTPUT
outputs:
enzyme_jax_commit: ${{ steps.extract_enzyme_jax_commit.outputs.enzyme_jax_commit }}
build-jll:
name: Build Reactant_jll
if: github.event.pull_request.draft == false
uses: EnzymeAD/ReactantBuilder/.github/workflows/build-reactant-reusable.yml@main

Check failure on line 41 in .github/workflows/build-reactantjll.yml

View workflow run for this annotation

GitHub Actions / Build Reactant_jll

Invalid workflow file

The workflow is not valid. .github/workflows/build-reactantjll.yml (Line: 41, Col: 11): Secret ENZYMEAD_BOT_ID is required, but not provided while calling. .github/workflows/build-reactantjll.yml (Line: 41, Col: 11): Secret ENZYMEAD_BOT_PRIVATE_KEY is required, but not provided while calling.
needs: enzyme-jax-commit
with:
reactantbuilder_ref: "main"
reactant_commit: ${{ github.event.pull_request.head.sha }}
enzyme_jax_commit: ${{ needs.enzyme-jax-commit.outputs.enzyme_jax_commit }}