Skip to content

β¬†οΈπŸ‘¨β€πŸ’» Update munich-quantum-toolkit/workflows action to v1.8 #905

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

Merged
merged 1 commit into from
Apr 5, 2025
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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging.yml@v1.8

# Downloads the previously generated artifacts and deploys to PyPI on published releases.
deploy:
Expand Down
20 changes: 10 additions & 10 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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@v1.8

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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-ci.yml@v1.8
with:
# Runs to enable
enable-ubuntu2404-gcc-release: true
Expand Down Expand Up @@ -68,7 +68,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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-ci.yml@v1.8
with:
# Runs to enable
enable-ubuntu2404-gcc-debug: true
Expand Down Expand Up @@ -115,7 +115,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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-coverage.yml@v1.8
permissions:
contents: read
id-token: write
Expand All @@ -124,7 +124,7 @@ jobs:
name: πŸ‡¨β€Œ Lint
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-linter)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@v1.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@v1.8
with:
cmake-args: -DBUILD_MQT_CORE_BENCHMARKS=ON -DBUILD_MQT_CORE_MLIR=ON
clang-version: 20
Expand All @@ -134,7 +134,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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-ci.yml@v1.8
with:
# Runs to enable
enable-ubuntu2404: true
Expand All @@ -156,7 +156,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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-ci.yml@v1.8
with:
# Runs to enable
enable-ubuntu2204: true
Expand All @@ -177,19 +177,19 @@ 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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@v1.8

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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-code-ql.yml@v1.8

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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging.yml@v1.8

required-checks-pass: # This job does nothing and is only used for branch protection
name: 🚦 Check
Expand Down
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.7
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-qiskit-upstream.yml@v1.8
with:
runs-on: ${{ matrix.os }}
setup-z3: true
Expand Down
Loading