Skip to content

Commit 2ac88b7

Browse files
committed
debug error
1 parent 903910a commit 2ac88b7

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/bazel_cuda_non_rbe_wt.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,15 @@ jobs:
6161
run: |
6262
os=$(uname -s | awk '{print tolower($0)}')
6363
arch=$(uname -m)
64-
echo "PLATFORM=${os}_${arch}" >> $GITHUB_ENV
64+
65+
# Get the major and minor version of Python.
66+
# E.g if JAXCI_HERMETIC_PYTHON_VERSION=3.10, then python_major_minor=310
67+
echo
68+
python_major_minor="${JAXCI_HERMETIC_PYTHON_VERSION//./}"
69+
70+
echo "OS=${os}" >> $GITHUB_ENV
71+
echo "ARCH=${arch}" >> $GITHUB_ENV
72+
echo "PYTHON_MAJOR_MINOR=${python_major_minor}" >> $GITHUB_ENV
6573
- name: Download the wheel artifacts from GCS
6674
run: mkdir -p $(pwd)/dist && gsutil -m cp -r "${{ inputs.gcs_download_uri }}"/*${PYTHON_MAJOR_MINOR}*${OS}*${ARCH}*.whl $(pwd)/dist/
6775
- name: Run Bazel tests

.github/workflows/pytest_cuda_wt.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,10 @@ jobs:
6767
run: |
6868
os=$(uname -s | awk '{print tolower($0)}')
6969
arch=$(uname -m)
70-
70+
7171
# Get the major and minor version of Python.
7272
# E.g if JAXCI_HERMETIC_PYTHON_VERSION=3.10, then python_major_minor=310
73+
echo $os $arch "${JAXCI_HERMETIC_PYTHON_VERSION}"
7374
python_major_minor="${JAXCI_HERMETIC_PYTHON_VERSION//./}"
7475
7576
echo "OS=${os}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)