Python interop WIP #18
This file contains hidden or 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: Docs | |
| on: | |
| push: | |
| branches: [rust] | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Export GitHub Actions cache environment variables | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
| core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - uses: prefix-dev/[email protected] | |
| - uses: taiki-e/install-action@v2 | |
| with: | |
| tool: just,sd,fd-find,cargo-vcpkg,cargo-nextest | |
| - name: Build the C++ dependencies using vcpkg | |
| env: | |
| VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
| run: just bootstrap | |
| - name: Build the wheel in develop mode and run the unit tests | |
| run: just test | |
| - name: Build docs | |
| run: just pydoc | |
| - name: Force correct file permissions | |
| run: | | |
| chmod -c +rX "target/pydoc/.lock" & | |
| chmod -c -R +rX "target/pydoc" | | |
| while read line; do | |
| echo "::warning title=Invalid file permissions automatically fixed::$line" | |
| done | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: target/pydoc/html | |
| deploy: | |
| name: Deploy | |
| needs: build | |
| # if: github.ref == 'refs/heads/main' | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |