Skip to content

Commit f8e07b4

Browse files
committed
Fix for linux-x86-ct5lp-224-8tpu
Signed-off-by: Vladimir Suvorov <suvorovv@google.com>
1 parent 967ff8a commit f8e07b4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/tpu-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ concurrency:
3232

3333
jobs:
3434
prelim:
35-
runs-on: [linux-x86-ct5lp-224-8tpu] # use your runner labels
36-
container:
37-
image: us-docker.pkg.dev/tpu-prod-env-multipod/jax-stable-stack/candidate/tpu:latest
38-
options: --privileged
35+
runs-on: ["linux-x86-n2-32"]
36+
steps:
37+
- name: Test gsutil installation
38+
run: which gsutil >/dev/null 2>&1 || { echo >&2 "gsutil is required but not installed. Aborting"; exit 24;}
39+
- name: Cleanup old docker images
40+
run: docker system prune --all --force
3941

4042
tpu_unit_tests:
4143
needs: prelim

0 commit comments

Comments
 (0)