Merge pull request #4596 from mwichmann/AddOption-option-obj #2134
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
# This action builds SCons, mainly to make sure the docs generate. | |
name: SCons Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
package: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python 3.12 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --progress-bar off --upgrade pip setuptools wheel | |
#python -m pip install flake8 pytest | |
if [ -f requirements-pkg.txt ]; then pip install --progress-bar off -r requirements-pkg.txt; elif [ -f requirements.txt ]; then pip install --progress-bar off -r requirements.txt; fi | |
sudo apt-get update | |
sudo apt-get -y install docbook-xml docbook-xsl xsltproc fop docbook-xsl-doc-pdf | |
# try to keep the texlive install as small as we can to save some time/space | |
sudo apt-get -y --no-install-recommends install texlive biber texmaker ghostscript texlive-latex-base texlive-latex-extra texlive-bibtex-extra texlive-font-utils latexmk | |
# This is disabled until the run can be configured to only | |
# check the code that matters, else we fail on non-essentials | |
# like the bench/ stuff. | |
#- name: Lint with flake8 | |
# run: | | |
# # stop the build if there are Python syntax errors or undefined names | |
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Update Doc sources (some parts are generated) | |
run: | | |
python bin/docs-update-generated.py | |
python bin/docs-validate.py | |
python bin/docs-create-example-outputs.py | |
- name: Build SCons packages | |
run: | | |
python scripts/scons.py | |
- name: Verify package | |
run: | | |
ls -l build/dist | |
python build/scons-local/scons.py --version |