From 72198fa234dd04f16b9833031291816f970c6031 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 8 Dec 2025 15:13:07 -0400 Subject: [PATCH 1/3] Update CI deps --- .github/workflows/Check.yml | 2 +- .github/workflows/Format.yml | 8 ++++---- .github/workflows/benchmark_pr.yml | 8 ++++---- .github/workflows/ci.yml | 12 ++++++------ 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/Check.yml b/.github/workflows/Check.yml index e95e67d2d..28f8d0b3e 100644 --- a/.github/workflows/Check.yml +++ b/.github/workflows/Check.yml @@ -12,7 +12,7 @@ jobs: name: Runic formatting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 with: version: "1" diff --git a/.github/workflows/Format.yml b/.github/workflows/Format.yml index 32afbf310..14385609b 100644 --- a/.github/workflows/Format.yml +++ b/.github/workflows/Format.yml @@ -16,7 +16,7 @@ jobs: if: github.event.pull_request.draft == false steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} @@ -58,7 +58,7 @@ jobs: [ $EXIT_CODE -eq 2 ] && exit 1 || exit 0 - name: Find comment - uses: peter-evans/find-comment@v3 + uses: peter-evans/find-comment@v4 id: find-comment with: issue-number: ${{ github.event.pull_request.number }} @@ -67,7 +67,7 @@ jobs: - name: Comment formatting suggestions if: steps.runic.outputs.exit_code == 1 - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.find-comment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} @@ -89,7 +89,7 @@ jobs: - name: Update stale comment if: steps.runic.outputs.exit_code == 0 && steps.find-comment.outputs.comment-id - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.find-comment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} diff --git a/.github/workflows/benchmark_pr.yml b/.github/workflows/benchmark_pr.yml index c9c83c189..3693fcfe2 100644 --- a/.github/workflows/benchmark_pr.yml +++ b/.github/workflows/benchmark_pr.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 with: version: "1" @@ -42,7 +42,7 @@ jobs: mkdir -p plots benchpkgplot ${{ steps.extract-package-name.outputs.package_name }} --rev="${{github.event.repository.default_branch}},${{github.event.pull_request.head.sha}}" --npart=10 --format=png --input-dir=results/ --output-dir=plots/ - name: Upload plot as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: plots path: plots @@ -60,7 +60,7 @@ jobs: echo 'Go to "Actions"->"Benchmark a pull request"->[the most recent run]->"Artifacts" (at the bottom).' >> body.md - name: Find Comment - uses: peter-evans/find-comment@v3 + uses: peter-evans/find-comment@v4 id: fcbenchmark with: issue-number: ${{ github.event.pull_request.number }} @@ -68,7 +68,7 @@ jobs: body-includes: Benchmark Results - name: Comment on PR - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.fcbenchmark.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af2dda550..65385714b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,14 +44,14 @@ jobs: - os: windows-2025 pocl: local steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: julia-actions/install-juliaup@v2 with: channel: ${{ matrix.version }} - uses: julia-actions/cache@v2 - name: Checkout pocl if: ${{ matrix.pocl == 'local' }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: pocl/pocl path: pocl @@ -146,14 +146,14 @@ jobs: Pkg.activate(".") Pkg.test() - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: - file: lcov.info + files: lcov.info docs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 with: version: '1' @@ -167,7 +167,7 @@ jobs: name: Doctests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 with: version: '1' From a8a5ee6e24e5cee196d2016a233724c9f21b2559 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 8 Dec 2025 15:31:11 -0400 Subject: [PATCH 2/3] [Temp] test --- src/KernelAbstractions.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/KernelAbstractions.jl b/src/KernelAbstractions.jl index cdb4dd960..f738a11ef 100644 --- a/src/KernelAbstractions.jl +++ b/src/KernelAbstractions.jl @@ -714,6 +714,10 @@ include("nditeration.jl") using .NDIteration import .NDIteration: get +function fake_new_function_to_test_format_and_coverage(badformat =85) + println(badformat) +end + ### # Kernel closure struct ### From 34a3f2ffc7ee8e8d7f25cac8ae0a9e26b5134cff Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 8 Dec 2025 19:27:40 -0400 Subject: [PATCH 3/3] Revert "[Temp] test" This reverts commit a8a5ee6e24e5cee196d2016a233724c9f21b2559. --- src/KernelAbstractions.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/KernelAbstractions.jl b/src/KernelAbstractions.jl index f738a11ef..cdb4dd960 100644 --- a/src/KernelAbstractions.jl +++ b/src/KernelAbstractions.jl @@ -714,10 +714,6 @@ include("nditeration.jl") using .NDIteration import .NDIteration: get -function fake_new_function_to_test_format_and_coverage(badformat =85) - println(badformat) -end - ### # Kernel closure struct ###