Skip to content

feat: add builtin function support for compiler #42

feat: add builtin function support for compiler

feat: add builtin function support for compiler #42

Workflow file for this run

name: Deploy Doxygen docs to GitHub Pages
on: [push, pull_request]
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Update submodule
with:
submodules: recursive
- name: Install dependency
run: |
sudo apt-get update
sudo apt-get install cmake
sudo apt-get install doxygen
sudo apt-get install graphviz graphviz-doc
- name: Configure
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
- name: Build the docx
run: |
cd build
cmake --build . --target DOXYGEN
- name: Create .nojeklly
run: |
touch ./docs/html/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: docs
folder: ./docs/html