Skip to content
Closed
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/actions/setup_base/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
limit-access-to-actor: true
detached: ${{ inputs.DEBUG_DETACHED }}

- uses: ilammy/msvc-dev-cmd@v1.4.1
- uses: ilammy/msvc-dev-cmd@v1
if: ${{ inputs.MATRIX_OS == 'windows-2022' }}

- name: Set up Visual Studio shell
Expand All @@ -56,7 +56,7 @@ runs:

- name: Free disk space
if: contains(inputs.MATRIX_OS, 'ubuntu')
uses: descriptinc/free-disk-space@main
uses: descriptinc/free-disk-space@1b4b157593c6801212a2ed488c205e0a810b4592 # main as of 2023-09-27
with:
tool-cache: true
android: true
Expand All @@ -65,7 +65,7 @@ runs:
large-packages: true
swap-storage: false # This frees space on the wrong partition.

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup_ccache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
using: "composite"
steps:
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2.12
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ inputs.MATRIX_OS }}-${{ inputs.MATRIX_ARCH }}-${{ inputs.EXTRA_KEY }}
max-size: "1G"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestAieTools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
steps:

- name: Free disk space
uses: descriptinc/free-disk-space@main
uses: descriptinc/free-disk-space@1b4b157593c6801212a2ed488c205e0a810b4592 # main as of 2023-09-27
with:
tool-cache: true
android: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestAieToolsHsaBuildOnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
steps:

- name: Free disk space
uses: descriptinc/free-disk-space@main
uses: descriptinc/free-disk-space@1b4b157593c6801212a2ed488c205e0a810b4592 # main as of 2023-09-27
with:
tool-cache: true
android: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestMulti.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
fetch-depth: 2
submodules: "true"

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildAndTestPythons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
fetch-depth: 2
submodules: "true"

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python_version }}

Expand All @@ -75,7 +75,7 @@ jobs:
unzip -q mlir-*.whl

- name: Ccache for C++ compilation
uses: hendrikmuhs/ccache-action@v1.2
uses: hendrikmuhs/ccache-action@v1
with:
# Since there are now several compilation jobs running in parallel,
# use a different key per job to avoid a ccache writing race condition
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestRyzenAISw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
steps:

- name: Free disk space
uses: descriptinc/free-disk-space@main
uses: descriptinc/free-disk-space@1b4b157593c6801212a2ed488c205e0a810b4592 # main as of 2023-09-27
with:
tool-cache: true
android: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/buildRyzenWheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

steps:
- name: Free disk space
uses: descriptinc/free-disk-space@main
uses: descriptinc/free-disk-space@1b4b157593c6801212a2ed488c205e0a810b4592 # main as of 2023-09-27
with:
tool-cache: true
android: true
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
submodules: "true"

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python_version }}
allow-prereleases: true
Expand Down Expand Up @@ -443,7 +443,7 @@ jobs:

- name: Release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1
with:
artifacts: wheels_all/mlir_aie*whl
token: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -456,7 +456,7 @@ jobs:

- name: Release latest wheels (RTTI ON)
if: github.event_name != 'push'
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1
with:
artifacts: wheels_on_flat/mlir_aie*whl
token: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -469,7 +469,7 @@ jobs:

- name: Release latest wheels (RTTI OFF)
if: github.event_name != 'push'
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1
with:
artifacts: wheels_off_flat/mlir_aie*whl
token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generateDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Ccache for C++ compilation
# https://github.com/hendrikmuhs/ccache-action/releases/tag/v1.2.9
uses: hendrikmuhs/ccache-action@v1.2
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ runner.os }}-releaseasserts-${{ steps.get-submodule-hash.outputs.hash }}
max-size: 1G
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/lintAndFormat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y clang-tidy ninja-build clang libelf-dev

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
clangformat: 17.0.1

- name: Setup Python env
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
name: clang_format_diffs

- name: Check C/C++ format
uses: reviewdog/action-suggester@v1.22
uses: reviewdog/action-suggester@v1
with:
tool_name: clang-format
level: error
Expand All @@ -182,7 +182,7 @@ jobs:

- name: Check Python format
if: success() || failure()
uses: reviewdog/action-suggester@v1.22
uses: reviewdog/action-suggester@v1
with:
tool_name: black
level: error
Expand All @@ -203,7 +203,7 @@ jobs:
steps:

- name: Free disk space
uses: descriptinc/free-disk-space@main
uses: descriptinc/free-disk-space@1b4b157593c6801212a2ed488c205e0a810b4592 # main as of 2023-09-27
with:
tool-cache: true
android: true
Expand All @@ -218,7 +218,7 @@ jobs:
fetch-depth: 2
submodules: "true"

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:

- name: Ccache for C++ compilation
if: steps.changed-files.outputs.changed-files != ''
uses: hendrikmuhs/ccache-action@v1.2
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ runner.os }}-${{ matrix.ubuntu_version }}-${{ steps.get-llvm-commit-hash.outputs.hash }}-code-cov
max-size: 1G
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:

- name: Update PR with coverage results
if: steps.changed-files.outputs.changed-files != '' && github.event.pull_request.head.repo.full_name == github.repository
uses: edumserrano/find-create-or-update-comment@v2
uses: edumserrano/find-create-or-update-comment@v3
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: '<!--<!doctype codecov html>-->'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mlirAIEDistro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ jobs:
name: build_artifact_${{ matrix.OS }}_${{ matrix.ARCH }}_rtti_${{ matrix.ENABLE_RTTI }}
path: dist

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'

Expand Down Expand Up @@ -524,7 +524,7 @@ jobs:

- name: Release current commit
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*.whl"
token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mlirDistro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
MATRIX_ARCH: ${{ matrix.ARCH }}
EXTRA_KEY: mlir-distro-enable-rtti-${{ matrix.ENABLE_RTTI }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'

Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
name: build_artifact_${{ matrix.OS }}_${{ matrix.ARCH }}_rtti_${{ matrix.ENABLE_RTTI }}
path: dist

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'

Expand Down Expand Up @@ -488,7 +488,7 @@ jobs:

- name: Release current commit
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*.whl"
token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand Down
Loading