diff --git a/.github/workflows/debug-dind.yml b/.github/workflows/debug-dind.yml new file mode 100644 index 00000000..30f8099b --- /dev/null +++ b/.github/workflows/debug-dind.yml @@ -0,0 +1,27 @@ +name: Debug DIND + +on: + push: + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + debug-dind: + name: Debug DIND + runs-on: + group: gcp-ct5lp-hightpu-8t + + env: + PJRT_DEVICE: TPU + HF_HUB_CACHE: /mnt/hf_cache/cache_huggingface + HF_TOKEN: ${{ secrets.HF_TOKEN_OPTIMUM_TPU_CI }} + V5_LITEPOD_8_ENV: ${{ vars.V5_LITEPOD_8_ENV}} + + steps: + - name: test curl protobuf + run: | + curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip + +