Skip to content

Commit 3fd003d

Browse files
committed
fix workflow files
1 parent 2014eb0 commit 3fd003d

File tree

2 files changed

+7
-22
lines changed

2 files changed

+7
-22
lines changed

.github/workflows/bazel_cuda_non_rbe.yml

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,16 @@ on:
3434
required: true
3535
default: 'gs://general-ml-ci-transient/jax-github-actions/jax-fork/${{ github.workflow }}/${{ github.run_number }}/${{ github.run_attempt }}'
3636
type: string
37-
37+
halt-for-connection:
38+
description: 'Should this workflow run wait for a remote connection?'
39+
type: boolean
40+
required: false
41+
default: false
3842

3943
jobs:
4044
run-tests:
4145
runs-on: ${{ inputs.runner }}
42-
<<<<<<< HEAD
43-
4446
container: "us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/ml-build-cudnn:720686788"
45-
=======
46-
container: "us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/nosla-cuda12.3-cudnn9.1-ubuntu20.04-manylinux2014-multipython:latest"
47-
>>>>>>> 14246134e7f2ec1ae4eaba8a70315a0fc2e73cd4
4847

4948
env:
5049
JAXCI_HERMETIC_PYTHON_VERSION: ${{ inputs.python }}
@@ -69,19 +68,6 @@ jobs:
6968
echo "ARCH=${arch}" >> $GITHUB_ENV
7069
echo "PYTHON_MAJOR_MINOR=${python_major_minor}" >> $GITHUB_ENV
7170
- name: Download the wheel artifacts from GCS
72-
<<<<<<< HEAD
73-
run: |
74-
download_uri="${{ inputs.gcs_download_uri }}"
75-
# Replace spaces with underscore
76-
download_uri=${download_uri// /_}
77-
78-
mkdir -p $(pwd)/dist &&
79-
gsutil -m cp -r "${download_uri}/jaxlib*${PYTHON_MAJOR_MINOR}*${OS}*${ARCH}*.whl" $(pwd)/dist/ &&
80-
gsutil -m cp -r "${download_uri}/jax*cuda*plugin*${PYTHON_MAJOR_MINOR}*${OS}*${ARCH}*.wh"l" $(pwd)/dist/ &&
81-
gsutil -m cp -r "${download_uri}/jax*cuda*pjrt*${OS}*${ARCH}*.whl" $(pwd)/dist/
82-
- name: Run Bazel tests
83-
run: ./ci/run_bazel_test_gpu_non_rbe.sh
84-
=======
8571
run: >-
8672
mkdir -p $(pwd)/dist &&
8773
gsutil -m cp -r "${{ inputs.gcs_download_uri }}/jaxlib*${PYTHON_MAJOR_MINOR}*${OS}*${ARCH}*.whl" $(pwd)/dist/ &&
@@ -94,5 +80,4 @@ jobs:
9480
halt-dispatch-input: ${{ inputs.halt-for-connection }}
9581
- name: Run Bazel CUDA tests (Non-RBE)
9682
timeout-minutes: 60
97-
run: ./ci/run_bazel_test_cuda_non_rbe.sh
98-
>>>>>>> 14246134e7f2ec1ae4eaba8a70315a0fc2e73cd4
83+
run: ./ci/run_bazel_test_cuda_non_rbe.sh

.github/workflows/pytest_cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run-tests:
4545

4646
runs-on: ${{ inputs.runner }}
47-
container: ${{ (contains(inputs.cuda, '12.3') && 'us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/nosla-cuda12.3-cudnn9.1-ubuntu20.04-manylinux2014-multipython:latest') ||
47+
container: ${{ (contains(inputs.cuda, '12.3') && 'us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/ml-build-cudnn:720686788') ||
4848
(contains(inputs.cuda, '12.1') && 'us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/nosla-cuda12.1-cudnn9.1-ubuntu20.04-manylinux2014-multipython:latest') }}
4949

5050
name: "Pytest GPU (${{ inputs.runner }}, CUDA ${{ inputs.cuda }}, Python ${{ inputs.python }}, x64=${{ inputs.enable-x64 }})"

0 commit comments

Comments
 (0)