Merge branch 'main' into chris/remove-switch-case #3161
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
# This workflow will install Python dependencies, run tests and lint | |
# with a single version of Python For more information see: | |
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: FFCx CI | |
on: | |
push: | |
branches: | |
- "**" | |
tags: | |
- "v*" | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8', '3.9', '3.10', "3.11"] | |
env: | |
CC: gcc-10 | |
CXX: g++-10 | |
steps: | |
- name: Checkout FFCx | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies (non-Python, Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get install -y graphviz libgraphviz-dev ninja-build pkg-config | |
- name: Install dependencies (non-Python, macOS) | |
if: runner.os == 'macOS' | |
run: brew install graphviz ninja pkg-config | |
- name: Install FEniCS dependencies (Python) | |
run: | | |
python -m pip install git+https://github.com/FEniCS/ufl.git | |
python -m pip install git+https://github.com/FEniCS/basix.git | |
- name: Install FFCx | |
run: | | |
python -m pip install .[ci] | |
- name: Lint with flake8 | |
run: | | |
python -m flake8 --statistics ffcx/ test/ | |
- name: Static check with mypy | |
run: | | |
python -m mypy ffcx/ | |
if: matrix.python-version != '3.11' | |
- name: isort checks (non-blocking) | |
continue-on-error: true | |
run: | | |
python3 -m isort --check . | |
- name: Check documentation style | |
run: | | |
python -m pydocstyle . | |
- name: Run units tests | |
run: | | |
python -m pytest -n auto --cov=ffcx/ --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml test/ | |
- name: Upload to Coveralls | |
if: ${{ github.repository == 'FEniCS/ffcx' && github.head_ref == '' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' }} | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
run: | | |
python -m coveralls | |
continue-on-error: true | |
- name: Upload pytest results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }} | |
path: junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml | |
# Use always() to always run this step to publish test results | |
# when there are test failures | |
if: always() | |
- name: Get UFL | |
uses: actions/checkout@v3 | |
with: | |
path: ./ufl | |
repository: FEniCS/ufl | |
ref: main | |
- name: Run FFCx and UFL demos | |
run: | | |
mv ufl/demo/* demo/ | |
pytest demo/test_demos.py | |
rm -Rf ufl/ | |
- name: Build documentation | |
run: | | |
cd doc | |
make html | |
- name: Upload documentation artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: doc-${{ matrix.os }}-${{ matrix.python-version }} | |
path: doc/build/html/ | |
retention-days: 2 | |
if-no-files-found: error | |
- name: Checkout FEniCS/docs | |
if: ${{ github.repository == 'FEniCS/ffcx' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') ) && runner.os == 'Linux' && matrix.python-version == 3.8 }} | |
uses: actions/checkout@v3 | |
with: | |
repository: "FEniCS/docs" | |
path: "docs" | |
ssh-key: "${{ secrets.SSH_GITHUB_DOCS_PRIVATE_KEY }}" | |
- name: Set version name | |
if: ${{ github.repository == 'FEniCS/ffcx' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') ) && runner.os == 'Linux' && matrix.python-version == 3.8 }} | |
run: | | |
echo "VERSION_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Copy documentation into repository | |
if: ${{ github.repository == 'FEniCS/ffcx' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') ) && runner.os == 'Linux' && matrix.python-version == 3.8 }} | |
run: | | |
cd docs | |
git rm -r --ignore-unmatch ffcx/${{ env.VERSION_NAME }} | |
mkdir -p ffcx/${{ env.VERSION_NAME }} | |
cp -r ../doc/build/html/* ffcx/${{ env.VERSION_NAME }} | |
- name: Commit and push documentation to FEniCS/docs | |
if: ${{ github.repository == 'FEniCS/ffcx' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') ) && runner.os == 'Linux' && matrix.python-version == 3.8 }} | |
run: | | |
cd docs | |
git config --global user.email "[email protected]" | |
git config --global user.name "FEniCS GitHub Actions" | |
git add --all | |
git commit --allow-empty -m "Python FEniCS/ffcx@${{ github.sha }}" | |
git push |