2022-03-25 09:46:57 +00:00
|
|
|
name: gh-pages
|
2020-08-11 21:32:59 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-16 22:14:57 +00:00
|
|
|
- main
|
2021-05-05 03:27:12 +00:00
|
|
|
pull_request:
|
2020-08-11 21:32:59 +00:00
|
|
|
release:
|
2020-09-16 21:25:43 +00:00
|
|
|
types: [published]
|
2020-08-11 21:32:59 +00:00
|
|
|
|
2022-03-15 12:47:39 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-09-01 19:59:28 +00:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
2020-08-11 21:32:59 +00:00
|
|
|
jobs:
|
2022-03-25 09:46:57 +00:00
|
|
|
guide-build:
|
2020-08-11 21:32:59 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-09-16 19:43:44 +00:00
|
|
|
outputs:
|
|
|
|
tag_name: ${{ steps.prepare_tag.outputs.tag_name }}
|
2020-08-11 21:32:59 +00:00
|
|
|
steps:
|
2022-06-02 08:18:35 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-08-11 21:32:59 +00:00
|
|
|
|
2021-05-05 03:26:03 +00:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-07-20 07:53:43 +00:00
|
|
|
toolchain: nightly
|
|
|
|
profile: minimal
|
2021-05-05 03:26:03 +00:00
|
|
|
|
2020-08-11 21:32:59 +00:00
|
|
|
- name: Setup mdBook
|
|
|
|
uses: peaceiris/actions-mdbook@v1
|
|
|
|
with:
|
2021-07-20 07:53:43 +00:00
|
|
|
mdbook-version: "0.4.10"
|
2021-04-02 14:38:49 +00:00
|
|
|
|
|
|
|
- name: Prepare tag
|
|
|
|
id: prepare_tag
|
|
|
|
run: |
|
|
|
|
TAG_NAME="${GITHUB_REF##*/}"
|
|
|
|
echo "::set-output name=tag_name::${TAG_NAME}"
|
2020-08-11 21:32:59 +00:00
|
|
|
|
2021-12-22 11:09:16 +00:00
|
|
|
# Build some internal docs and inject a banner on top of it.
|
|
|
|
- name: Build the internal docs
|
|
|
|
run: |
|
2022-06-08 13:30:11 +00:00
|
|
|
echo "<div class='internal-banner' style='position:fixed; z-index: 99999; color:red;border:3px solid red;margin-left: auto; margin-right: auto; width: 430px;left:0;right: 0;'><div style='display: flex; align-items: center; justify-content: center;'> ⚠️ Internal Docs ⚠️ Not Public API 👉 <a href='https://pyo3.rs/main/doc/pyo3/index.html' style='color:red;text-decoration:underline;'>Official Docs Here</a></div></div>" > banner.html
|
2022-03-18 22:13:23 +00:00
|
|
|
cargo xtask doc --internal
|
2021-12-22 11:09:16 +00:00
|
|
|
env:
|
2022-06-08 13:30:11 +00:00
|
|
|
RUSTDOCFLAGS: "--cfg docsrs --Z unstable-options --document-hidden-items --html-before-content banner.html"
|
2021-12-22 11:09:16 +00:00
|
|
|
|
|
|
|
- name: Deploy internal docs
|
|
|
|
if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'release' }}
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2022-06-08 13:30:11 +00:00
|
|
|
publish_dir: ./target/doc
|
|
|
|
destination_dir: internal/doc
|
2021-12-22 11:09:16 +00:00
|
|
|
full_commit_message: "Upload internal documentation"
|
|
|
|
|
2022-03-25 09:46:57 +00:00
|
|
|
- name: Clear the extra artefacts created earlier
|
2021-12-22 11:09:16 +00:00
|
|
|
run: rm -rf target
|
|
|
|
|
2022-06-08 13:30:11 +00:00
|
|
|
# This builds the book in target/guide.
|
2020-08-11 21:32:59 +00:00
|
|
|
- name: Build the guide
|
2022-06-08 13:30:11 +00:00
|
|
|
run: |
|
|
|
|
pip install nox
|
|
|
|
nox -s build-guide
|
2021-04-02 14:38:49 +00:00
|
|
|
env:
|
|
|
|
PYO3_VERSION_TAG: ${{ steps.prepare_tag.outputs.tag_name }}
|
2020-08-11 21:32:59 +00:00
|
|
|
|
2022-06-08 13:30:11 +00:00
|
|
|
# This adds the docs to target/guide/doc
|
2020-08-11 21:32:59 +00:00
|
|
|
- name: Build the doc
|
|
|
|
run: |
|
2022-03-18 22:13:23 +00:00
|
|
|
cargo xtask doc
|
2022-06-08 13:30:11 +00:00
|
|
|
echo "<meta http-equiv=refresh content=0;url=pyo3/index.html>" > target/guide/doc/index.html
|
|
|
|
env:
|
|
|
|
CARGO_TARGET_DIR: target/guide
|
2020-08-11 21:32:59 +00:00
|
|
|
|
2021-12-22 11:09:16 +00:00
|
|
|
- name: Deploy docs and the guide
|
2021-05-05 08:35:37 +00:00
|
|
|
if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'release' }}
|
2021-08-11 22:50:58 +00:00
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
2020-08-11 21:32:59 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2022-06-08 13:30:11 +00:00
|
|
|
publish_dir: ./target/guide/
|
2020-08-11 21:32:59 +00:00
|
|
|
destination_dir: ${{ steps.prepare_tag.outputs.tag_name }}
|
2021-07-20 07:53:43 +00:00
|
|
|
full_commit_message: "Upload documentation for ${{ steps.prepare_tag.outputs.tag_name }}"
|
2022-03-25 09:46:57 +00:00
|
|
|
|
|
|
|
guide-release:
|
|
|
|
needs: guide-build
|
2020-09-16 20:11:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ github.event_name == 'release' }}
|
2020-09-16 19:43:44 +00:00
|
|
|
steps:
|
2021-07-20 07:46:40 +00:00
|
|
|
- name: Create latest tag redirects
|
2020-09-16 19:43:44 +00:00
|
|
|
env:
|
2021-05-06 22:14:52 +00:00
|
|
|
TAG_NAME: ${{ needs.build.outputs.tag_name }}
|
2020-09-16 19:43:44 +00:00
|
|
|
run: |
|
|
|
|
mkdir public
|
|
|
|
echo "<meta http-equiv=refresh content=0;url='$TAG_NAME/'>" > public/index.html
|
2021-07-20 07:46:40 +00:00
|
|
|
ln -sfT $TAG_NAME public/latest
|
2020-09-16 19:43:44 +00:00
|
|
|
|
|
|
|
- name: Deploy
|
2021-08-11 22:50:58 +00:00
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
2020-09-16 19:43:44 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./public/
|
2021-07-20 07:53:43 +00:00
|
|
|
full_commit_message: "Release ${{ needs.build.outputs.tag_name }}"
|
2020-09-16 19:43:44 +00:00
|
|
|
keep_files: true
|
2022-03-25 09:46:57 +00:00
|
|
|
|
|
|
|
cargo-benchmark:
|
|
|
|
if: ${{ github.ref_name == 'main' }}
|
|
|
|
name: Cargo benchmark
|
|
|
|
needs: guide-build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-06-02 08:18:35 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-25 09:46:57 +00:00
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: cargo-${{ runner.os }}-bench-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
- name: Run benchmarks
|
|
|
|
run: |
|
|
|
|
for bench in call dict gil list pyclass pyobject set tuple; do
|
|
|
|
cargo bench --features hashbrown --bench "bench_$bench" -- --output-format bencher | tee -a output.txt
|
|
|
|
done
|
|
|
|
|
|
|
|
# Download previous benchmark result from cache (if exists)
|
|
|
|
- name: Download previous benchmark data
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ./cache
|
|
|
|
key: ${{ runner.os }}-benchmark
|
|
|
|
|
|
|
|
# Run `github-action-benchmark` action
|
|
|
|
- name: Store benchmark result
|
|
|
|
uses: benchmark-action/github-action-benchmark@v1
|
|
|
|
with:
|
|
|
|
name: pyo3-bench
|
|
|
|
# What benchmark tool the output.txt came from
|
|
|
|
tool: "cargo"
|
|
|
|
# Where the output from the benchmark tool is stored
|
|
|
|
output-file-path: output.txt
|
|
|
|
# GitHub API token to make a commit comment
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
auto-push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
|
|
|
|
pytest-benchmark:
|
|
|
|
if: ${{ github.ref_name == 'main' }}
|
|
|
|
name: Pytest benchmark
|
|
|
|
needs: cargo-benchmark
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-06-02 08:18:35 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v3
|
2022-03-25 09:46:57 +00:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: cargo-${{ runner.os }}-pytest-bench-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
- name: Download previous benchmark data
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ./cache
|
|
|
|
key: ${{ runner.os }}-pytest-benchmark
|
|
|
|
|
|
|
|
- name: Run benchmarks
|
|
|
|
run: |
|
|
|
|
pip install nox
|
|
|
|
nox -f pytests/noxfile.py -s bench -- --benchmark-json $(pwd)/output.json
|
|
|
|
- name: Store benchmark result
|
|
|
|
uses: benchmark-action/github-action-benchmark@v1
|
|
|
|
with:
|
|
|
|
name: pytest-bench
|
|
|
|
tool: "pytest"
|
|
|
|
output-file-path: output.json
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
auto-push: ${{ github.event_name != 'pull_request' }}
|