2023-06-21 00:00:11 +00:00
|
|
|
name: Test & Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
# on:
|
|
|
|
# pull_request:
|
|
|
|
# branches:
|
|
|
|
# - master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform: [ 'x86_64-unknown-linux-gnu', 'aarch64-unknown-linux-gnu' ]
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
egress-policy: block
|
|
|
|
allowed-endpoints: >
|
|
|
|
api.github.com:443
|
2023-11-20 22:55:15 +00:00
|
|
|
cdn.quay.io:443
|
|
|
|
cdn01.quay.io:443
|
|
|
|
cdn02.quay.io:443
|
2023-06-21 00:00:11 +00:00
|
|
|
cdn03.quay.io:443
|
|
|
|
crates.io:443
|
2023-11-20 22:55:15 +00:00
|
|
|
files.pythonhosted.org:443
|
|
|
|
ghcr.io:443
|
2023-06-21 00:00:11 +00:00
|
|
|
github.com:443
|
2023-11-20 22:55:15 +00:00
|
|
|
index.crates.io:443
|
2023-06-21 00:00:11 +00:00
|
|
|
objects.githubusercontent.com:443
|
2023-11-20 22:55:15 +00:00
|
|
|
uploads.github.com:443
|
|
|
|
pkg-containers.githubusercontent.com:443
|
|
|
|
pypi.org:443
|
2023-06-21 00:00:11 +00:00
|
|
|
quay.io:443
|
|
|
|
sh.rustup.rs:443
|
|
|
|
static.crates.io:443
|
|
|
|
static.rust-lang.org:443
|
|
|
|
|
|
|
|
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
|
2024-04-01 23:04:13 +00:00
|
|
|
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
architecture: x64
|
|
|
|
|
2024-05-04 04:54:44 +00:00
|
|
|
- uses: PyO3/maturin-action@52b28abb0c6729beb388babfc348bf6ff5aaff31
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
manylinux: auto
|
|
|
|
target: ${{ matrix.platform }}
|
|
|
|
command: build
|
2023-11-20 22:55:15 +00:00
|
|
|
args: --release --sdist -o dist -i 3.8 3.9 3.10 3.11 3.12
|
2023-06-21 00:00:11 +00:00
|
|
|
|
|
|
|
- name: Upload wheels
|
2024-04-22 23:35:55 +00:00
|
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # 4.3.3
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
|
|
|
|
|
|
|
windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target: [x64]
|
2023-11-01 05:58:18 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
|
2023-06-21 00:00:11 +00:00
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
|
|
|
|
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
|
2024-04-01 23:04:13 +00:00
|
|
|
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
2024-05-04 04:54:44 +00:00
|
|
|
- uses: PyO3/maturin-action@52b28abb0c6729beb388babfc348bf6ff5aaff31
|
2023-06-21 00:00:11 +00:00
|
|
|
env:
|
|
|
|
PYO3_PYTHON: python${{ matrix.python-version }}
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --release -o dist
|
|
|
|
|
|
|
|
- name: Upload wheels
|
2024-04-22 23:35:55 +00:00
|
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # 4.3.3
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
|
|
|
|
|
|
|
macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-11-01 05:58:18 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
|
2023-11-20 22:55:15 +00:00
|
|
|
target: ['universal2', 'x86_64-apple-darwin']
|
2023-06-21 00:00:11 +00:00
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
|
|
|
|
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
|
2024-04-01 23:04:13 +00:00
|
|
|
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
2023-11-20 22:55:15 +00:00
|
|
|
- name: Build wheels - ${{ matrix.target }}
|
2024-05-04 04:54:44 +00:00
|
|
|
uses: PyO3/maturin-action@52b28abb0c6729beb388babfc348bf6ff5aaff31
|
2023-06-21 00:00:11 +00:00
|
|
|
env:
|
|
|
|
PYO3_PYTHON: python${{ matrix.python-version }}
|
|
|
|
with:
|
2023-11-20 22:55:15 +00:00
|
|
|
target: ${{ matrix.target }}
|
2023-06-21 00:00:11 +00:00
|
|
|
command: build
|
|
|
|
args: --release -o dist
|
|
|
|
|
|
|
|
- name: Upload wheels
|
2024-04-22 23:35:55 +00:00
|
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # 4.3.3
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
|
|
|
|
|
|
|
python-release-github:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [ macos, windows, linux ]
|
|
|
|
permissions:
|
|
|
|
contents: write # To add assets to a release.
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.1.0
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
disable-sudo: true
|
|
|
|
egress-policy: block
|
|
|
|
allowed-endpoints: >
|
|
|
|
api.github.com:443
|
|
|
|
github.com:443
|
|
|
|
uploads.github.com:443
|
2023-11-20 22:55:15 +00:00
|
|
|
static.rust-lang.org:443
|
2023-06-21 00:00:11 +00:00
|
|
|
|
|
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
|
|
|
|
2024-05-04 04:55:05 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
2023-11-19 00:05:00 +00:00
|
|
|
toolchain: 1.73.0
|
2023-06-21 00:00:11 +00:00
|
|
|
|
|
|
|
- name: Set up Python 3.8
|
2024-04-01 23:04:13 +00:00
|
|
|
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
|
2024-04-30 03:31:22 +00:00
|
|
|
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: wheels
|
|
|
|
|
|
|
|
- name: Upload release binaries
|
2024-03-18 22:49:54 +00:00
|
|
|
uses: alexellis/upload-assets@13926a61cdb2cb35f5fdef1c06b8b591523236d3
|
2023-06-21 00:00:11 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
asset_paths: '["./wheels/tantivy-*"]'
|
|
|
|
|
|
|
|
release-pypy:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [ macos, windows, linux ]
|
|
|
|
permissions:
|
|
|
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
2024-04-30 03:30:57 +00:00
|
|
|
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
|
2024-04-30 03:31:22 +00:00
|
|
|
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: wheels
|
|
|
|
|
|
|
|
- name: Publish package distributions to Test PyPI
|
2024-03-11 22:33:20 +00:00
|
|
|
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 # v1.8.14
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
repository-url: https://test.pypi.org/legacy/
|
|
|
|
packages-dir: wheels/
|
|
|
|
skip-existing: true
|
|
|
|
|
|
|
|
- name: Publish package distributions to PyPI
|
|
|
|
if: always()
|
2024-03-11 22:33:20 +00:00
|
|
|
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 # v1.8.14
|
2023-06-21 00:00:11 +00:00
|
|
|
with:
|
|
|
|
packages-dir: wheels/
|
|
|
|
skip-existing: true
|