Add cuPDLPx #5848
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: Documentation | |
| on: | |
| push: | |
| branches: [master] | |
| tags: '*' | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| GKSwstype: nul | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@latest | |
| with: | |
| # Fix the Julia version, because Enzyme doesn't always like being updated | |
| # to `latest`. | |
| version: '1.12' | |
| - uses: julia-actions/cache@v2 | |
| - name: Install Gurobi license | |
| env: | |
| SECRET_GUROBI_LICENSE: ${{ secrets.GUROBI_LICENSE }} | |
| shell: bash | |
| run: | | |
| mkdir -p /opt/gurobi | |
| echo "${SECRET_GUROBI_LICENSE}" > /opt/gurobi/gurobi.lic | |
| - name: Install dependencies | |
| shell: julia --color=yes --project=docs/ {0} | |
| run: | | |
| using Pkg | |
| Pkg.develop(PackageSpec(path=pwd())) | |
| Pkg.instantiate() | |
| - name: Build and deploy | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key | |
| DOCUMENTER_LATEX_DEBUG: ${{ github.workspace }}/latex-debug-logs | |
| run: julia --color=yes --project=docs/ docs/make.jl | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ always() }} | |
| with: | |
| name: PDF build logs | |
| path: ${{ github.workspace }}/latex-debug-logs | |
| - uses: errata-ai/vale-action@reviewdog | |
| with: | |
| version: 3.3.1 | |
| files: all | |
| fail_on_error: true | |
| filter_mode: nofilter | |
| vale_flags: "--config=.vale.ini" | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |