Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# workflow is triggered from a PR or a release, respectively.
python-packaging:
name: 🐍 Packaging
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging.yml@v1.10
with:
# Make sure Z3 is available
setup-z3: true
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ concurrency:
jobs:
change-detection:
name: 🔍 Change
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@v1.10

cpp-tests:
name: 🇨‌ Test
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-ci.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-ci.yml@v1.10
with:
# Runs to enable
enable-ubuntu2404-gcc-release: true
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
name: 🇨‌ Test (Extensive)
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests) && github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'extensive-cpp-ci')
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-ci.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-ci.yml@v1.10
with:
# Runs to enable
enable-ubuntu2404-gcc-debug: true
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
name: 🇨‌ Coverage
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-coverage.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-coverage.yml@v1.10
with:
setup-z3: true
permissions:
Expand All @@ -148,7 +148,7 @@ jobs:
name: 🐍 Test
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-python-tests)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-ci.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-ci.yml@v1.10
with:
# Runs to enable
enable-ubuntu2404: true
Expand All @@ -173,7 +173,7 @@ jobs:
name: 🐍 Test (Extensive)
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-python-tests) && github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'extensive-python-ci')
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-ci.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-ci.yml@v1.10
with:
# Runs to enable
enable-ubuntu2204: true
Expand All @@ -198,23 +198,23 @@ jobs:
name: 🐍 Lint
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-python-tests)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@v1.10
with:
setup-z3: true

code-ql:
name: 📝 CodeQL
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-code-ql)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-code-ql.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-code-ql.yml@v1.10
with:
setup-z3: true

cd:
name: 🚀 CD
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cd)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging.yml@v1.10
with:
setup-z3: true
# 4.13.0 has incorrectly tagged manylinux wheels
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-mqt-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ concurrency:
jobs:
update-mqt-core:
name: ⬆️ Update MQT Core
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-mqt-core-update.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-mqt-core-update.yml@v1.10
with:
update-to-head: ${{ github.event.inputs.update-to-head == 'true' }}
2 changes: 1 addition & 1 deletion .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-15, windows-2025]
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-qiskit-upstream.yml@v1.9
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-qiskit-upstream.yml@v1.10
with:
runs-on: ${{ matrix.os }}
setup-z3: true
Expand Down
Loading