Skip to content

Commit 31d1b9d

Browse files
committed
Fix bugs in workflow YML files
1 parent bb43aa2 commit 31d1b9d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/reusable/build-docker.yml renamed to .github/workflows/build-docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- uses: actions/checkout@v4
3030
- name: Download wheel artifacts
3131
uses: actions/download-artifacts@v4
32+
with:
3233
name: ${{ inputs.artifact-prefix }}_r${{ inputs.rocm-version }}
3334
path: ./wheelhouse
3435
- name: Build JAX docker image

.github/workflows/reusable/build-wheels.yml renamed to .github/workflows/build-wheels.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ on:
1010
required: true
1111
type: string
1212
artifact-prefix:
13+
required: false
1314
default: 'plugin_wheels'
15+
type: string
1416

15-
build-plugin-docker:
17+
jobs:
18+
build-plugin-docker:
1619
runs-on: mi-250
1720
steps:
1821
- name: Clean up old runs

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rocm-version: ["6.3.3"]
25-
uses: jax/rocm-jax/.github/workflows/reuseable/build-wheels.yml@master
25+
uses: rocm/rocm-jax/.github/workflows/build-wheels.yml@master
2626
with:
2727
python-versions: ${{ env.PYTHON_VERSIONS }}
2828
rocm-version: ${{ matrix.rocm-version }}
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
python-version: ["3.10.13,3.12.8"]
3333
rocm-version: ["6.3.3"]
34-
uses: jax/rocm-jax/.github/workflows/reusable/build-docker.yml@master
34+
uses: rocm/rocm-jax/.github/workflows/build-docker.yml@master
3535
with:
3636
rocm-version: ${{ matrix.python-version }}
3737
run-python-unit-tests:

0 commit comments

Comments
 (0)