Adding section on anonymous access-to-object types #1384
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sphinx Content Tests | |
on: [push, pull_request] | |
defaults: | |
run: | |
working-directory: frontend | |
jobs: | |
sphinx-content: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install OS Deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
graphviz \ | |
plantuml | |
- name: Install GNAT FSF | |
run: | | |
sudo wget -O gnat.tar.gz https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-x86_64-linux-12.2.0-1.tar.gz && \ | |
sudo tar xzf gnat.tar.gz && \ | |
sudo mv gnat-* /usr/local/gnat | |
sudo echo "/usr/local/gnat/bin" >> $GITHUB_PATH | |
sudo wget -O gnatprove.tar.gz https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-12.1.0-1/gnatprove-x86_64-linux-12.1.0-1.tar.gz && \ | |
sudo tar xzf gnatprove.tar.gz && \ | |
sudo mv gnatprove-* /usr/local/gnatprove | |
sudo echo "/usr/local/gnatprove/bin" >> $GITHUB_PATH | |
sudo wget -O gprbuild.tar.gz https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-22.0.0-1/gprbuild-x86_64-linux-22.0.0-1.tar.gz && \ | |
sudo tar xzf gprbuild.tar.gz && \ | |
sudo mv gprbuild-* /usr/local/gprbuild | |
sudo echo "/usr/local/gprbuild/bin" >> $GITHUB_PATH | |
sudo rm *.tar.gz | |
- name: Increase max user watches | |
run: | | |
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && \ | |
sudo sysctl -p | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run SPHINX engine tests | |
run: make SPHINXOPTS="-W" test_engine | |
- name: Build HTML content | |
run: make HIDDEN_BOOKS="" HIDDEN_CONTENTS="" cleanall webpack-production sphinx-production | |
- name: Archive HTML content in artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: learn-html | |
path: | | |
frontend/dist/html | |
retention-days: 1 |