Skip to content
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

Workflows Update #608

Merged
merged 3 commits into from
Dec 5, 2024
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
15 changes: 15 additions & 0 deletions .github/workflows/compatibility_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,21 @@ jobs:
cd ./.compatibility_tests/compatibility_test_1_15/
cargo test

unittests_check_compatibility_1_16:
name: unittests_check-compatibility-1-16
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
- uses: Swatinem/rust-cache@v2
- run: |
cd ./.compatibility_tests/compatibility_test_1_16/
cargo test

unittests_check_circuit_decompositions:
name: unittests_check_circuit_decompositions
runs-on: "ubuntu-latest"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/hqs-build-deploy-rust-pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
deploy: true
# Whether to build for aarch64. Can fail if there are C/C++ dependencies
build_for_arm: true
python_3_13: false
secrets: inherit

# Build macos wheels and upload them to PyPi
Expand All @@ -50,6 +51,7 @@ jobs:
with:
py_interface_folder: "qoqo"
deploy: true
python_3_13: false
secrets: inherit

# Build windows wheels and upload them to PyPi
Expand All @@ -60,4 +62,5 @@ jobs:
with:
py_interface_folder: "qoqo"
deploy: true
python_3_13: false
secrets: inherit
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
python-version: "3.11"
- uses: peaceiris/actions-mdbook@v1
with:
version: latest
mdbook-version: latest
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/hqs-ci-test-rust-pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
# Run tests also on macos runners
macos: true
rust_package_name: "roqoqo"
python_3_13: false
features: "json_schema overrotate circuitdag unstable_chain_with_environment unstable_analog_operations unstable_operation_definition"

build_tests:
Expand All @@ -27,4 +28,5 @@ jobs:
# Run tests also on macos runners
macos: false
py_interface_folder: "qoqo"
python_3_13: false
has_python_tests: false
2 changes: 1 addition & 1 deletion qoqo/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ Raises:
}
}
};
if meth_doc.eq("") {
if meth_doc.is_empty() {
continue;
}
let meth_args =
Expand Down
Loading