bsp: imx8: installing-os: Describe partup usage for flashing image to eMMC from SD card #297
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: Build | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: self-hosted | |
timeout-minutes: 15 | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install tox texlive-latex-extra texlive-xetex latexmk python3-pip -y | |
pip3 install -r requirements/setup.txt | |
pip3 install -r requirements/build.txt | |
- name: Render HTML Documentation | |
run: tox -e py3-html | |
- name: Build PDF Documentation | |
run: tox -e py3-pdf |