From 340559289a9f6ec7b74a9dcf3a2db514510f0263 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Wed, 8 Jan 2025 08:26:03 +0000 Subject: [PATCH] wip --- .github/workflows/debug-dind.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/debug-dind.yml 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 + +