We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 967ff8a commit f8e07b4Copy full SHA for f8e07b4
.github/workflows/tpu-tests.yml
@@ -32,10 +32,12 @@ concurrency:
32
33
jobs:
34
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
+ runs-on: ["linux-x86-n2-32"]
+ steps:
+ - name: Test gsutil installation
+ 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
41
42
tpu_unit_tests:
43
needs: prelim
0 commit comments