Skip to content

Commit 574e6fe

Browse files
committed
Simplified flow test.
1 parent d74fbe1 commit 574e6fe

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

.github/workflows/RunTests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,17 @@ jobs:
134134
# container_resource_option: "--shm-size 2g --runtime=nvidia --gpus all --privileged"
135135

136136

137-
clean_up:
138-
if: ${{ always() }} # always execute, regardless of previous jobs or steps.
139-
# needs: [gpu_unit_tests, gpu_integration_tests, tpu_unit_tests, tpu_pathways_unit_tests, tpu_integration_tests]
140-
needs: [tpu_pathways_unit_tests]
141-
# needs: [tpu_unit_tests]
142-
name: "Clean up"
143-
runs-on: ["self-hosted", "tpu_pathways" ]
144-
steps:
145-
# - name: Delete GPU image
146-
# run: gcloud container images delete gcr.io/tpu-prod-env-multipod/maxtext_${{ github.run_id }}:gpu --force-delete-tags --quiet
147-
- name: Delete TPU image
148-
run: gcloud container images delete gcr.io/tpu-prod-env-multipod/maxtext_${{ github.run_id }}:tpu --force-delete-tags --quiet
137+
# clean_up:
138+
# if: ${{ always() }} # always execute, regardless of previous jobs or steps.
139+
# # needs: [gpu_unit_tests, gpu_integration_tests, tpu_unit_tests, tpu_pathways_unit_tests, tpu_integration_tests]
140+
# needs: [tpu_pathways_unit_tests]
141+
# # needs: [tpu_unit_tests]
142+
# name: "Clean up"
143+
# runs-on: ["self-hosted", "tpu_pathways" ]
144+
# steps:
145+
# # - name: Delete GPU image
146+
# # run: gcloud container images delete gcr.io/tpu-prod-env-multipod/maxtext_${{ github.run_id }}:gpu --force-delete-tags --quiet
147+
# # - name: Delete TPU image
148+
# # run: gcloud container images delete gcr.io/tpu-prod-env-multipod/maxtext_${{ github.run_id }}:tpu --force-delete-tags --quiet
149149

150150

.github/workflows/run_tests_internal.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@ jobs:
4646
runs-on: ["self-hosted", "${{ inputs.device_type }}", "${{ inputs.device_name }}"]
4747
steps:
4848
- uses: actions/checkout@v4
49-
- uses: ./.github/workflows/start_pathways_containers.yml
50-
with:
51-
device_type: tpu_pathways
52-
device_name: v4-8
49+
- name: Start containers using script
50+
run: |
51+
bash docker_build_pathways_containers.sh
5352
# run:
5453
# runs-on: ["self-hosted", "${{ inputs.device_type }}", "${{ inputs.device_name }}"]
5554
# container:

utils_pathways/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ services:
6868
- JAX_PLATFORMS="proxy"
6969
- JAX_BACKEND_TARGET="grpc://localhost:29000"
7070
command:
71-
- python3 -m pytest -s tests -m tpu_only
71+
- cd Maxtext ; python3 -m pytest -s tests -m tpu_only
7272

7373
#### LOCAL NETWORK
7474

0 commit comments

Comments
 (0)