We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60bd1fe commit 1d0a90dCopy full SHA for 1d0a90d
.github/workflows/docs.yml
@@ -20,9 +20,10 @@ jobs:
20
- name: Install documentation dependencies
21
run: |
22
sudo apt install opencl-c-headers ocl-icd-opencl-dev doxygen
23
- pip3 install --upgrade setuptools build
24
- pip3 install -U -r $GITHUB_WORKSPACE/doc/requirements.txt
25
- pip3 install -U --ignore-installed $GITHUB_WORKSPACE
+ sudo pip3 install --upgrade pip3 setuptools build
+ pip3 install --user --upgrade -r $GITHUB_WORKSPACE/doc/requirements.txt
+ python3 -m build --wheel $GITHUB_WORKSPACE
26
+ pip3 install --user --upgrade --ignore-installed $GITHUB_WORKSPACE/dist/*.whl
27
28
- name: Run the documentation build
29
0 commit comments