Handle migrated stable C++ docs in rendering test #826
Workflow file for this run
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: pr | |
| on: | |
| push: | |
| branches: | |
| - "pull-request/[0-9]+" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| pr-builder: | |
| needs: | |
| - check-style | |
| - docs | |
| permissions: | |
| actions: read | |
| contents: read | |
| id-token: write | |
| packages: read | |
| pull-requests: read | |
| secrets: inherit # zizmor: ignore[secrets-inherit] | |
| uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main | |
| if: always() | |
| with: | |
| needs: ${{ toJSON(needs) }} | |
| check-style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 | |
| docs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| env: | |
| RAPIDS_DOCS_BASE_URL: https://docs.nvidia.com/datascience/ | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync --locked | |
| - name: Build and validate portal | |
| run: make check | |
| - name: Check out gha-tools | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: rapidsai/gha-tools | |
| ref: main | |
| path: gha-tools | |
| persist-credentials: false | |
| sparse-checkout: tools | |
| - name: Add gha-tools to PATH | |
| run: echo "${GITHUB_WORKSPACE}/gha-tools/tools" >> "${GITHUB_PATH}" | |
| - name: Publish portal to NVIDIA docs | |
| uses: rapidsai/shared-actions/publish-docs@82e2c50e4703a224de0bc8d0f6e5d12dcab68db7 | |
| with: | |
| dry-run: true | |
| source-path: _site | |
| target-s3-key: datascience | |
| target-s3-exclude: deployment/* | |
| target-s3-bucket: ${{ secrets.NVIDIA_DOCS_S3_BUCKET }} | |
| target-aws-access-key-id: ${{ secrets.NVIDIA_DOCS_AWS_ACCESS_KEY_ID }} | |
| target-aws-secret-access-key: ${{ secrets.NVIDIA_DOCS_AWS_SECRET_ACCESS_KEY }} | |
| target-aws-region: ${{ secrets.NVIDIA_DOCS_AWS_REGION }} | |
| akamai-access-token: ${{ secrets.NVIDIA_DOCS_AKAMAI_ACCESS_TOKEN }} | |
| akamai-client-secret: ${{ secrets.NVIDIA_DOCS_AKAMAI_CLIENT_SECRET }} | |
| akamai-client-token: ${{ secrets.NVIDIA_DOCS_AKAMAI_CLIENT_TOKEN }} | |
| akamai-emails-to-notify: ${{ secrets.NVIDIA_DOCS_AKAMAI_EMAILS_TO_NOTIFY }} | |
| akamai-host: ${{ secrets.NVIDIA_DOCS_AKAMAI_HOST }} | |
| akamai-request-name: rapidsai-docs-${{ github.run_id }} | |
| - name: Configure source AWS credentials | |
| uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1 | |
| with: | |
| role-to-assume: ${{ vars.AWS_ROLE_ARN }} | |
| aws-region: ${{ vars.AWS_REGION }} | |
| role-duration-seconds: 7200 | |
| - name: Assemble and validate API documentation | |
| run: make assemble | |
| - name: Generate compatibility redirects | |
| run: | | |
| uv run python scripts/generate_redirect_site.py \ | |
| --output _site/_redirects |