-
Notifications
You must be signed in to change notification settings - Fork 8
56 lines (46 loc) · 1.32 KB
/
doc-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: gh-pages
on:
push:
branches:
- master
permissions:
contents: write
jobs:
doc_build:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
python-version: ["3.11"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- uses: ./.github/actions/setup_optimizers_linux
with:
GUROBI_WLS: ${{ secrets.GUROBI_WLS }}
COPT_CLIENT_INI: ${{ secrets.COPT_CLIENT_INI }}
MOSEK_LICENSE: ${{ secrets.MOSEK_LICENSE }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CHECK_LICENSE: false
- name: Build
run: |
python -m pip list
python -m pip install nanobind scikit-build-core[pyproject]
python -m pip install --no-build-isolation -v .
python -c "import pyoptinterface as poi; print(dir(poi))"
- name: Build documentation
run: |
pip install -r docs/requirements.txt
pip install highsbox
cd docs
make html
cd ..
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/build/html