A Modern GPGPU API & wip linux RDNA2+ Driver
rdna driver linux gpu
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

wip: adding docs publishing to github

+38
+38
.github/workflows/docs.yml
··· 1 + name: Build and Deploy Sphinx Docs 2 + 3 + on: 4 + push: 5 + branches: [ master ] 6 + workflow_dispatch: 7 + 8 + permissions: 9 + contents: write 10 + 11 + jobs: 12 + docs: 13 + runs-on: ubuntu-latest 14 + steps: 15 + - uses: actions/checkout@v4 16 + 17 + - name: Install uv 18 + uses: astral-sh/setup-uv@v4 19 + with: 20 + version: "latest" 21 + 22 + - name: Install Doxygen 23 + run: sudo apt-get update && sudo apt-get install -y doxygen 24 + 25 + - name: Configure CMake 26 + run: cmake -B build 27 + 28 + - name: Build Sphinx docs 29 + run: | 30 + cmake --build build -t docs 31 + touch build/docs/html/.nojekyll 32 + 33 + - name: Deploy to GitHub Pages 34 + uses: peaceiris/actions-gh-pages@v4 35 + with: 36 + github_token: ${{ secrets.GITHUB_TOKEN }} 37 + publish_dir: ./build/docs/html 38 + force_orphan: true