Skip to content

Commit

Permalink
Add missing self-update feature, fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Sep 23, 2024
1 parent 1c9a848 commit 973ecf4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release --locked --out dist --features production
args: --release --locked --out dist --features production,self-update
- name: "Upload wheels"
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: aarch64
args: --release --locked --out dist --features production
args: --release --locked --out dist --features production,self-update
- name: "Test wheel - aarch64"
run: |
pip install dist/${{ env.PACKAGE_NAME }}-*.whl --force-reinstall
Expand Down Expand Up @@ -352,8 +352,7 @@ jobs:
*.tar.gz
*.sha256
# Like `linux-arm`, but use `--no-default-features --features flate2/rust_backend` when
# building uv.
# Like `linux-arm`, but use `--no-default-features` when building uv.
linux-s390x:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -421,8 +420,8 @@ jobs:
*.tar.gz
*.sha256
# Like `linux-arm`, but use `--no-default-features --features flate2/rust_backend` when
# building uv, and install the `gcc-powerpc64-linux-gnu` package.
# Like `linux-arm`, but use `--no-default-features` when building uv,
# and install the `gcc-powerpc64-linux-gnu` package.
linux-powerpc:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 973ecf4

Please sign in to comment.