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
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ jobs:
name: Setup Python env
command: |
make setup-python
.venv3.13/bin/pip install ziglang
.venv3.13/bin/pip install ziglang==0.15.2
- run:
name: Install additional targets
command: |
Expand All @@ -876,6 +876,13 @@ jobs:
for target in $TARGETS; do
make build-python-wheel GLEAN_BUILD_TARGET="$target" GLEAN_BUILD_EXTRA="--zig"
done
- run:
name: Halt unless release
command: |
if [ -z "${CIRCLE_TAG}" ]; then
# Don't upload anything unless we're doing a release
circleci-agent step halt
fi
- run:
name: Upload wheels
command: |
Expand Down Expand Up @@ -1053,6 +1060,8 @@ workflows:
filters: *ci-filters
- Python Windows x86_64 tests:
filters: *ci-filters
- pypi-linux-additional-releases:
filters: *ci-filters

- Generate Rust documentation:
filters: *ci-only
Expand Down
2 changes: 1 addition & 1 deletion glean-core/python/requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ semver==2.13.0
setuptools-git==1.2
twine==6.0.1
wheel==0.47.0
maturin==1.13.1
maturin==1.12.6
patchelf>=0.17; sys_platform == "linux"
Loading