[deps]: Update @types/node to v20.17.5 #2845
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Python Wheels | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
- "rc" | |
- "hotfix-rc" | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
working-directory: languages/python | |
jobs: | |
generate_schemas: | |
uses: ./.github/workflows/generate_schemas.yml | |
setup: | |
name: Setup | |
runs-on: ubuntu-22.04 | |
outputs: | |
package_version: ${{ steps.retrieve-version.outputs.package_version }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Get Package Version | |
id: retrieve-version | |
run: | | |
VERSION="$(grep -o '^version = ".*"' ../../crates/bitwarden-py/Cargo.toml | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+")" | |
echo "package_version=$VERSION" >> $GITHUB_OUTPUT | |
build: | |
name: Building Python wheel for - ${{ matrix.settings.os }} - ${{ matrix.settings.target }} | |
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }} | |
needs: | |
- generate_schemas | |
- setup | |
env: | |
_PACKAGE_VERSION: ${{ needs.setup.outputs.package_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- os: macos-13 | |
target: x86_64-apple-darwin | |
- os: macos-13 | |
target: aarch64-apple-darwin | |
- os: windows-2022 | |
target: x86_64-pc-windows-msvc | |
- os: ubuntu-22.04 | |
target: x86_64-unknown-linux-gnu | |
- os: ubuntu-22.04 | |
target: aarch64-unknown-linux-gnu | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Node | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 18 | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # stable | |
with: | |
toolchain: stable | |
targets: ${{ matrix.settings.target }} | |
- name: Cache cargo registry | |
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 | |
with: | |
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.os }} | |
- name: Retrieve schemas | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: schemas.py | |
path: ${{ github.workspace }}/languages/python/bitwarden_sdk | |
- name: Build wheels | |
if: ${{ matrix.settings.target != 'x86_64-unknown-linux-gnu' }} | |
uses: PyO3/maturin-action@ea5bac0f1ccd0ab11c805e2b804bfcb65dac2eab # v1.45.0 | |
with: | |
target: ${{ matrix.settings.target }} | |
args: --release --find-interpreter --sdist | |
sccache: "true" | |
manylinux: "2_28" # https://github.com/pola-rs/polars/pull/12211 | |
working-directory: ${{ github.workspace }}/languages/python | |
- name: Build wheels (Linux - x86_64) | |
if: ${{ matrix.settings.target == 'x86_64-unknown-linux-gnu' }} | |
uses: PyO3/maturin-action@ea5bac0f1ccd0ab11c805e2b804bfcb65dac2eab # v1.45.0 | |
with: | |
target: ${{ matrix.settings.target }} | |
args: --release --find-interpreter --sdist | |
container: quay.io/pypa/manylinux_2_28_x86_64:2023-11-20-745eb52 | |
sccache: "true" | |
manylinux: "2_28" # https://github.com/pola-rs/polars/pull/12211 | |
working-directory: ${{ github.workspace }}/languages/python | |
- name: Upload wheels | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: bitwarden_sdk-${{ env._PACKAGE_VERSION }}-${{ matrix.settings.target }} | |
path: ${{ github.workspace }}/target/wheels/bitwarden_sdk*.whl | |
- name: Upload sdists | |
if: ${{ matrix.settings.target == 'x86_64-unknown-linux-gnu' }} # we only need one sdist | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: bitwarden_sdk-${{ env._PACKAGE_VERSION }}-sdist | |
path: ${{ github.workspace }}/target/wheels/bitwarden_sdk-*.tar.gz |