Skip to content

Fixed uint types not in integral_types #14

Fixed uint types not in integral_types

Fixed uint types not in integral_types #14

Workflow file for this run

##======================================================================================================================
## TTS - Tiny Test System
## Copyright : TTS Contributors & Maintainers
## SPDX-License-Identifier: BSL-1.0
##======================================================================================================================
name: TTS Documentation Generation
on:
push:
branches:
- main
jobs:
generate-doc:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:v6
strategy:
fail-fast: false
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Prepare TTS for documentation
run: |
mkdir build && cd build
cmake .. -G Ninja -DTTS_BUILD_TEST=OFF -DTTS_BUILD_DOCUMENTATION=ON
- name: Generate Doxygen
run: |
cd build
ninja tts-doxygen
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/doc