Skip to content

~Sandbox

~Sandbox #484

Workflow file for this run

name: "~Sandbox"
on:
workflow_dispatch:
#push:
permissions:
contents: read # to fetch code
actions: write # to cancel previous workflows
packages: write # to upload container
jobs:
build-jax:
uses: ./.github/workflows/_build_jax.yaml
with:
ARCHITECTURE: amd64
secrets: inherit
build-pax:
needs: [build-jax]
uses: ./.github/workflows/_build_pax.yaml
with:
ARCHITECTURE: amd64
BASE_IMAGE: ${{ needs.build-jax.outputs.DOCKER_TAG_MEALKIT }}
secrets: inherit
test-te:
needs: [build-pax]
uses: ./.github/workflows/_test_te.yaml
with:
TE_IMAGE: ${{ needs.build-pax.outputs.DOCKER_TAG_FINAL }}
secrets: inherit
build-rosetta:
needs: [build-pax]
uses: ./.github/workflows/_build_rosetta.yaml

Check failure on line 37 in .github/workflows/_sandbox.yaml

View workflow run for this annotation

GitHub Actions / ~Sandbox

Invalid workflow file

The workflow is not valid. In .github/workflows/_sandbox.yaml (Line: 37, Col: 11): Error from called workflow NVIDIA/JAX-Toolbox/.github/workflows/_build_rosetta.yaml@1d9d2823491d88eaaab1b9bf12877eb6350ee2b3 (Line: 49, Col: 28): Unrecognized named-value: 'input'. Located at position 1 within expression: input.ARCHITECTURE In .github/workflows/_sandbox.yaml (Line: 37, Col: 11): Error from called workflow NVIDIA/JAX-Toolbox/.github/workflows/_build_rosetta.yaml@1d9d2823491d88eaaab1b9bf12877eb6350ee2b3 (Line: 51, Col: 28): Unrecognized named-value: 'input'. Located at position 1 within expression: input.BADGE_FILENAME
with:
ARCHITECTURE: amd64
BASE_LIBRARY: pax
BASE_IMAGE: ${{ needs.build-pax.outputs.DOCKER_TAG_FINAL }}
# test-pax:
# needs: [build-pax]
# uses: ./.github/workflows/_test_pax.yaml
# with:
# PAX_IMAGE: ${{ needs.build-pax.outputs.DOCKER_TAG_FINAL }}
# secrets: inherit
# finalize:
# if: always()
# # TODO: use dynamic matrix to make dependencies self-updating
# needs: [build-jax, build-t5x, build-pax]
# uses: ./.github/workflows/_finalize.yaml
# with:
# PUBLISH_BADGE: false
# secrets: inherit