-
-
Notifications
You must be signed in to change notification settings - Fork 230
67 lines (55 loc) · 1.69 KB
/
Copy pathdocs-build.yml
File metadata and controls
67 lines (55 loc) · 1.69 KB
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
57
58
59
60
61
62
63
64
65
66
67
name: docs-build
on:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: "0 4 * * *"
concurrency:
group: docs-build-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
docs:
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
env:
# Skip pyquil notebook execution everywhere (including linkcheck, which
# also executes notebooks) since no QVM/quilc servers run in CI.
SKIP_PYQUIL: 1
steps:
- name: Check out mitiq
uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Python dependencies
run: make install
# - name: Run the quilc & qvm Docker images
# run: |
# docker run --rm -idt -p 5000:5000 rigetti/qvm -S
# docker run --rm -idt -p 5555:5555 rigetti/quilc -R
- name: Generate hash from all files excluding example notebooks
id: gen_hash
run: |
HASH=$(find . -type f -not -path './docs/source/examples/*' | sort | xargs cat | sha256sum | awk '{print $1}')
echo "hash=$HASH" >> $GITHUB_OUTPUT
- name: Fetch Jupyter cache
uses: actions/cache@v6
with:
path: ./docs/build/.jupyter_cache
key: jupyter-cache-${{ steps.gen_hash.outputs.hash }}
- name: Build and test full Sphinx docs
run: |
sudo apt update
sudo apt install ocl-icd-opencl-dev
make docs
- name: Run nightly linkcheck
if: github.event_name == 'schedule'
run: make linkcheck