From e97576f4c75eac4aedd497dcddfd483e7bb9e91e Mon Sep 17 00:00:00 2001 From: Daniel Haag <121057143+denialhaag@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:56:27 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=93=A6=EF=B8=8F=20Selectively=20disab?= =?UTF-8?q?le=20archiving=20when=20uploading=20artifacts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/reusable-python-packaging-sdist.yml | 1 + .github/workflows/reusable-python-packaging-wheel-build.yml | 1 + .github/workflows/reusable-python-tests.yml | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-python-packaging-sdist.yml b/.github/workflows/reusable-python-packaging-sdist.yml index 1d5cc7a..6ca1a3b 100644 --- a/.github/workflows/reusable-python-packaging-sdist.yml +++ b/.github/workflows/reusable-python-packaging-sdist.yml @@ -46,3 +46,4 @@ jobs: with: name: ${{ github.event_name == 'pull_request' && 'dev-' || '' }}cibw-sdist path: dist/*.tar.gz + archive: false diff --git a/.github/workflows/reusable-python-packaging-wheel-build.yml b/.github/workflows/reusable-python-packaging-wheel-build.yml index 9ede6ee..e7b7cf0 100644 --- a/.github/workflows/reusable-python-packaging-wheel-build.yml +++ b/.github/workflows/reusable-python-packaging-wheel-build.yml @@ -46,3 +46,4 @@ jobs: with: name: ${{ github.event_name == 'pull_request' && 'dev-' || '' }}cibw-wheel path: dist/*.whl + archive: false diff --git a/.github/workflows/reusable-python-tests.yml b/.github/workflows/reusable-python-tests.yml index f2afbd9..a50a85f 100644 --- a/.github/workflows/reusable-python-tests.yml +++ b/.github/workflows/reusable-python-tests.yml @@ -116,7 +116,8 @@ jobs: uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: coverage-${{ inputs.runs-on }} - path: coverage-* + path: coverage-*# + archive: false - name: Show sccache stats run: sccache --show-stats From 1d828b23094e801a6cee0f7b70fd6d14f6b31f9f Mon Sep 17 00:00:00 2001 From: Daniel Haag <121057143+denialhaag@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:02:51 +0100 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54edfb0..6efb7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,17 +9,21 @@ This project adheres to [Semantic Versioning], with the exception that minor rel ## [Unreleased] +### Changed + +- 📦️ Selectively disable archiving when uploading artifacts ([#332]) ([**@denialhaag**]) + ## [1.17.14] - 2026-03-01 ### Fixed -- 🐛 Update `setup-mlir` to `v1.2.1` to fix a bug preventing the action to run ([#330]) +- 🐛 Update [munich-quantum-software/setup-mlir] to `v1.2.1` to fix a bug preventing the action to run ([#330]) ## [1.17.13] - 2026-03-01 ### Changed -- ⬆️ Update `setup-mlir` to `v1.2.0`, which brings support for LLVM 22 ([#329]) ([**@burgholzer**]) +- ⬆️ Update [munich-quantum-software/setup-mlir] to `v1.2.0`, which brings support for LLVM 22 ([#329]) ([**@burgholzer**]) ## [1.17.12] - 2026-02-18 @@ -29,7 +33,7 @@ This project adheres to [Semantic Versioning], with the exception that minor rel ### Removed -- 🔥 Remove the `nick-fields/retry` action on Windows builds, which put an artificial 15min limit on the build time ([#321]) ([**@burgholzer**]) +- 🔥 Remove the `nick-fields/retry` action on Windows builds, which put an artificial 15-minute limit on the build time ([#321]) ([**@burgholzer**]) ## [1.17.11] - 2026-01-07 @@ -43,7 +47,7 @@ This project adheres to [Semantic Versioning], with the exception that minor rel ### Removed -- 🔥 remove dedicated `run-mlir` MLIR output for reusable-change-detection.yml ([#300]) ([**@burgholzer**]) +- 🔥 Remove dedicated `run-mlir` MLIR output for ``reusable-change-detection.yml ([#300]) ([**@burgholzer**]) ## [1.17.10] - 2026-01-04 @@ -89,7 +93,7 @@ _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#1175)._ ### Added - ✨ Add step for checking if Python stub files are up to date ([#286]) ([**@denialhaag**]) -- ✨ Add optional `setup-mlir` input to allow setting up MLIR in the C++ and Python workflows ([#270]) ([**@denialhaag**], [**@burgholzer**]) +- ✨ Add optional [munich-quantum-software/setup-mlir] input to allow setting up MLIR in the C++ and Python workflows ([#270]) ([**@denialhaag**], [**@burgholzer**]) ### Changed From 9f5fad1be3a3a0f97d329886a400366ef7dcbf5b Mon Sep 17 00:00:00 2001 From: Daniel Haag <121057143+denialhaag@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:13:21 +0100 Subject: [PATCH 3/3] Address the Rabbit's comments --- .github/workflows/reusable-python-tests.yml | 2 +- CHANGELOG.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-python-tests.yml b/.github/workflows/reusable-python-tests.yml index a50a85f..a2edac1 100644 --- a/.github/workflows/reusable-python-tests.yml +++ b/.github/workflows/reusable-python-tests.yml @@ -116,7 +116,7 @@ jobs: uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: coverage-${{ inputs.runs-on }} - path: coverage-*# + path: coverage-* archive: false - name: Show sccache stats diff --git a/CHANGELOG.md b/CHANGELOG.md index 6efb7f2..b3c5f70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,7 +47,7 @@ This project adheres to [Semantic Versioning], with the exception that minor rel ### Removed -- 🔥 Remove dedicated `run-mlir` MLIR output for ``reusable-change-detection.yml ([#300]) ([**@burgholzer**]) +- 🔥 Remove dedicated `run-mlir` MLIR output for `reusable-change-detection.yml` ([#300]) ([**@burgholzer**]) ## [1.17.10] - 2026-01-04 @@ -304,6 +304,7 @@ _📚 Refer to the [GitHub Release Notes] for previous changelogs._ +[#332]: https://github.com/munich-quantum-toolkit/workflows/pull/332 [#330]: https://github.com/munich-quantum-toolkit/workflows/pull/330 [#329]: https://github.com/munich-quantum-toolkit/workflows/pull/329 [#323]: https://github.com/munich-quantum-toolkit/workflows/pull/323