Skip to content

Merge pull request #282 from weslleyspereira/fix-float128-tests #31

Merge pull request #282 from weslleyspereira/fix-float128-tests

Merge pull request #282 from weslleyspereira/fix-float128-tests #31

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
paths:
- '.github/workflows/deploy_pages.yml'
- 'docs/**'
- 'include/**'
- 'README.md'
- 'test/include/**'
- 'test/src/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Pages
uses: actions/configure-pages@f156874f8191504dae5b037505266ed5dda6c382 # v3.0.6
- name: Install Basic Dependencies
run: |
sudo apt update
sudo apt install -y cmake graphviz
- name: Install Doxygen
run: |
wget https://www.doxygen.nl/files/doxygen-1.9.8.linux.bin.tar.gz
tar -xzf doxygen-1.9.8.linux.bin.tar.gz
cd doxygen-1.9.8
sudo make install
- name: Generate the documentation
run: |
cmake -B build
cmake --build build --target doxygen
- name: Upload artifact
uses: actions/upload-pages-artifact@a753861a5debcf57bf8b404356158c8e1e33150c # v2.0.0
with:
# Upload docs/html
path: 'build/docs/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@9dbe3824824f8a1377b8e298bafde1a50ede43e5 # v2.0.4