Lines Matching +full:texlive +full:- +full:binaries

5     - master
6 - 'release/*'
8 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
11 group: ${{ github.ref }}-${{ github.workflow }}
12 cancel-in-progress: true
16 EM_CACHE_FOLDER: 'emsdk-cache'
18 build-and-deploy:
20 runs-on: ubuntu-22.04
21 concurrency: docs-build-and-deploy
23 - name: Checkout
26 persist-credentials: false
27 fetch-depth: 0
28 - name: Setup Python
29 uses: actions/setup-python@v5
31 python-version: '3.10'
32 - name: Cache Python packages
35 … # Cache the Python package environment, excluding pip and setuptools installed by setup-python
40 ${{ env.pythonLocation }}/lib/python*/site-packages/*
42 !${{ env.pythonLocation }}/lib/python*/site-packages/pip*
43 !${{ env.pythonLocation }}/lib/python*/site-packages/setuptools*
44 key: ${{ env.pythonLocation }}-${{ hashFiles('docs/requirements.txt') }}
45 - name: Install Doxygen and Latex dependencies
47 sudo apt-get update
48 …sudo apt-get install doxygen texlive-xetex texlive-binaries texlive-lang-english latexmk fonts-fre…
49 - name: Install requirements
51 pip install -r docs/requirements.txt
52 - name: Setup Emscripten cache
53 id: cache-system-libraries
57 key: ${{env.EM_VERSION}}-${{ runner.os }}
58 - uses: mymindstorm/setup-emsdk@v14
61 actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
62 - name: ccache
63 uses: hendrikmuhs/ccache-action@v1
64 - name: Build examples (with cache)
66 - name: Build docs
68 - name: Remove .doctrees
69 run: rm -rf out_html/.doctrees
70 - name: Retrieve version
72 echo "::set-output name=VERSION_NAME::$(scripts/find_version.sh)"
74 - name: Deploy to subfolder
75 uses: JamesIves/github-pages-deploy-action@v4.7.2
78 repository-name: lvgl/docs
79 branch: gh-pages # The branch the action should deploy to.
81 target-folder: ${{ steps.version.outputs.VERSION_NAME }}
82 git-config-name: lvgl-bot
83 git-config-email: lvgl-bot@users.noreply.github.com
84 single-commit: true
85 - name: Deploy to master
87 uses: JamesIves/github-pages-deploy-action@v4.7.2
90 repository-name: lvgl/docs
91 branch: gh-pages # The branch the action should deploy to.
93 target-folder: master
94 git-config-name: lvgl-bot
95 git-config-email: lvgl-bot@users.noreply.github.com