fix: update .readthedocs.yaml #132
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: build pages | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
env: | |
DISPLAY: :0 | |
PYTEST_ADDOPTS: "--color=yes" # colors in pytest | |
GLCONTEXT_WIN_LIBGL: C:\msys64\mingw64\bin\opengl32.dll | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: [3.9] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Poetry | |
run: | | |
pip install wheel | |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python | |
- name: Setup cache variables | |
shell: bash | |
id: cache-vars | |
run: | | |
export PATH="$HOME/.poetry/bin:$PATH" | |
echo "::set-output name=poetry-venv-dir::$(poetry config virtualenvs.path)" | |
echo "::set-output name=date::$(/bin/date -u "+%m%w%Y")" | |
- name: Setup Poetry cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.cache-vars.outputs.poetry-venv-dir }} | |
key: ${{ runner.os }}-poetry-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }} | |
- name: Install and cache ffmpeg (all OS) | |
uses: FedericoCarboni/setup-ffmpeg@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
id: setup-ffmpeg | |
- name: Install system dependencies (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt update | |
sudo apt -y install texlive-full tipa python-opengl libpango1.0-dev npm | |
# sudo apt-get -y install texlive texlive-latex-extra texlive-fonts-extra texlive-latex-recommended texlive-science texlive-fonts-extra tipa python-opengl libpango1.0-dev xvfb | |
echo "$HOME/.poetry/bin" >> $GITHUB_PATH | |
# # start xvfb in the background | |
# sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 & | |
- name: Install Poetry Dev Environment | |
run: | | |
poetry install | |
- name: Compile webpack | |
run: | | |
npm ci | |
npm run build_release | |
- name: Run Manim | |
run: | | |
poetry run manim -qh --save_sections example.py Tutorial | |
poetry run manim -qh --save_sections example.py MinimalPresentationExample | |
- name: Run the Manim Editor | |
run: | | |
mkdir pages | |
cd pages | |
poetry run manedit --quick_present_export ../media/videos/example/1080p60/sections/Tutorial.json | |
poetry run manedit --quick_present_export ../media/videos/example/1080p60/sections/MinimalPresentationExample.json | |
- name: Create Redirect | |
run: echo "<head><meta http-equiv='refresh' content='0; URL=Tutorial/index.html'></head>" > pages/index.html | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: pages | |
folder: pages | |