Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update upload/download-artifact action #1742

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/buildRyzenWheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
mv "$WHL_FN" "`echo $WHL_FN | sed "s/cp310-cp310/py3-none/"`"

- name: Upload mlir_aie
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: wheelhouse/repaired_wheel/mlir_aie*whl
name: mlir_aie
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
with:
python-version: ${{ matrix.python_version }}

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:

- name: Upload wheels
if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: wheelhouse/repaired_wheel/aie_python_bindings*.whl
name: ryzen_ai_wheel
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lintAndFormat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Upload clang-tidy fixes
if: ${{ steps.clang-tidy-fixes.outputs.FIXES }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: fixes.yml
name: clang-tidy-fixes.yml
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
cat clang-format.diff

- name: Upload clang-format
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: clang-format.diff
name: format_diffs
Expand All @@ -164,7 +164,7 @@ jobs:
cat black-format.diff

- name: Upload black-format
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: black-format.diff
name: format_diffs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mlirDistro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:

- name: Upload wheels
if: github.event_name != 'schedule'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ steps.workspace_root.outputs.WORKSPACE_ROOT }}/wheelhouse/*.whl
name: build_artifact_${{ matrix.OS }}_${{ matrix.ARCH }}_rtti_${{ matrix.ENABLE_RTTI }}
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:
# ENABLE_RTTI: OFF

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build_artifact_${{ matrix.OS }}_${{ matrix.ARCH }}_rtti_${{ matrix.ENABLE_RTTI }}
path: dist
Expand Down Expand Up @@ -471,7 +471,7 @@ jobs:
contents: write

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
Expand Down
Loading