maint: Technical review #96
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: CI | |
on: | |
pull_request: | |
push: | |
tags: | |
- "*" | |
branches: | |
- main | |
env: | |
MAIN_PYTHON_VERSION : '3.10' | |
LIBRARY_NAME: 'ansys-rocky-core' | |
DOCUMENTATION_CNAME: 'rocky.docs.pyansys.com' | |
DOC_DEPLOYMENT_IMAGE_TAG: v24.1.0 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Tests | |
runs-on: [self-hosted, Windows, pyrocky] | |
timeout-minutes: 10 | |
env: | |
ANSYSLMD_LICENSE_FILE: 1055@${{ secrets.LICENSE_SERVER }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install" | |
run: | | |
python -m venv .venv | |
.venv/Scripts/activate.bat | |
pip install -e .[tests] | |
- name: "Test" | |
run: | | |
.venv/Scripts/activate.bat | |
pre-commit run --all-files --show-diff-on-failure | |
pytest tests --junitxml=build/tests.xml | |
- name: "Check Examples" | |
run: | | |
.venv/Scripts/activate.bat | |
pytest test_examples.py --junitxml=build/tests-examples.xml | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: Pytest Report | |
path: build/tests.xml # Path to test results | |
reporter: java-junit | |
docs_build: | |
name: Build Documentation | |
runs-on: [self-hosted, Windows, pyrocky] | |
env: | |
ANSYSLMD_LICENSE_FILE: 1055@${{ secrets.LICENSE_SERVER }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install" | |
run: | | |
python -m venv .venv | |
.venv/Scripts/activate.bat | |
pip install -e .[dev] | |
pip install msvc-runtime | |
- name: Build Source Documentation | |
run: | | |
.venv/Scripts/activate.bat | |
doc\make.bat html | |
- name: Zip HTML Documentation before upload | |
run: python doc\compress_doc.py HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }} | |
- name: Upload HTML Documentation | |
uses: actions/upload-artifact@v3 | |
with: | |
name: HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }} | |
path: HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}.zip | |
retention-days: 7 | |
doc-deploy-dev: | |
name: "Deploy development documentation" | |
# Deploy development only when merging or pushing to the 'main' branch | |
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
needs: docs_build | |
steps: | |
- uses: ansys/actions/doc-deploy-dev@v4 | |
with: | |
doc-artifact-name: 'HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}' | |
decompress-artifact: true | |
cname: ${{ env.DOCUMENTATION_CNAME }} | |
token: ${{ secrets.GITHUB_TOKEN }} |