Quoct/cloud tpu 2 #34
This file contains hidden or 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
| # Cloud TPU CI | |
| name: Cloud TPU Presubmit | |
| # Run on pull_request that is labeled as "optional_ci_tpu" or workflow dispatch | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: [labeled, synchronize] | |
| workflow_dispatch: | |
| # Cancel any previous iterations if a new commit is pushed | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| cloud-tpu-test: | |
| # TODO: confirm final naming for optional label | |
| if: contains(github.event.pull_request.labels.*.name, 'optional_ci_tpu') | |
| name: "TPU v5e x 8 Presubmit" | |
| strategy: | |
| fail-fast: false # don't cancel all jobs on failure | |
| matrix: | |
| instances: ["one", "two"] | |
| env: | |
| ENABLE_PJRT_COMPATIBILITY: 1 | |
| # TODO: Needs final runs-on value | |
| runs-on: linux-x86-n2-16-dev | |
| container: | |
| # TODO: Needs newer, light weight image | |
| image: index.docker.io/tensorflow/build@sha256:7fb38f0319bda36393cad7f40670aa22352b44421bb906f5cf34d543acd8e1d2 # ratchet:tensorflow/build:latest-python3.11 | |
| timeout-minutes: 45 | |
| defaults: | |
| run: | |
| shell: bash -ex {0} | |
| steps: | |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v4 | |
| - name: Install JAX test requirements | |
| run: | | |
| pip install -U -r build/test-requirements.txt | |
| - name: DEBUG HALT | |
| run: | | |
| echo "Halting" | |
| sleep 30m | |