Skip to content

Updated benchmarks with Mac Mini M2 Pro #119

Updated benchmarks with Mac Mini M2 Pro

Updated benchmarks with Mac Mini M2 Pro #119

Workflow file for this run

name: Build Docs
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Doxygen
run: sudo apt install -y doxygen
- name: Install Graphviz
run: sudo apt install -y graphviz
- name: Install Doxygen Awesome
working-directory: ${{ github.workspace }}/docs
run: git clone https://github.com/jothepro/doxygen-awesome-css.git -b v2.2.1
- name: Run Doxygen
working-directory: ${{ github.workspace }}/docs
run: doxygen
- name: Upload documentation
working-directory: ${{ github.workspace }}/docs/html
run: tar -czf - * | sshpass -p "${{ secrets.EMSCRIPTEN_DEPLOY_PASSWORD }}" ssh -o StrictHostKeyChecking=no [email protected] "rm -rf docs && mkdir docs && cd docs && tar xzvf -"