Skip to content

Commit b51c1d4

Browse files
committed
Fix naming for macos jobs
1 parent 2946b23 commit b51c1d4

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/scripts/validate_binaries.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ if [[ ${PACKAGE_TYPE} == "libtorch" ]]; then
1313
else
1414
conda create -y -n ${ENV_NAME} python=${DESIRED_PYTHON} numpy pillow
1515
conda activate ${ENV_NAME}
16+
<<<<<<< Updated upstream
17+
=======
18+
19+
>>>>>>> Stashed changes
1620
export CONDA_LIBRARY_PATH="$(dirname $(which python))/../lib"
1721
export LD_LIBRARY_PATH=$CONDA_LIBRARY_PATH:$LD_LIBRARY_PATH
1822
INSTALLATION=${INSTALLATION/"conda install"/"conda install -y"}

.github/workflows/validate-macos-binaries.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949
matrix: ${{ fromJson(needs.generate-macos-matrix.outputs.matrix) }}
5050
fail-fast: false
5151
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
52-
name: ${{ matrix.build_name }}
52+
name: macos
5353
with:
5454
runner: ${{ matrix.validation_runner }}
5555
repository: "pytorch/builder"
5656
ref: ${{ inputs.ref || github.ref }}
57-
job-name: ${{ matrix.build_name }}
57+
job-name: macos
5858
script: |
5959
set -ex
6060
export ENV_NAME="conda-env-${{ github.run_id }}"
@@ -75,12 +75,12 @@ jobs:
7575
matrix: ${{ fromJson(needs.generate-macos-arm64-matrix.outputs.matrix) }}
7676
fail-fast: false
7777
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
78-
name: ${{ matrix.build_name }}
78+
name: macos-arm64
7979
with:
8080
runner: ${{ matrix.validation_runner }}
8181
repository: "pytorch/builder"
8282
ref: ${{ inputs.ref || github.ref }}
83-
job-name: ${{ matrix.build_name }}
83+
job-name: macos-arm64
8484
script: |
8585
set -ex
8686
export ENV_NAME="conda-env-${{ github.run_id }}"

release/cut-release-branch.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)