Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: public-ubuntu-latest-8-cores
timeout-minutes: 60
container:
image: ghcr.io/ansys/mechanical:25.2.0
image: ghcr.io/ansys/mechanical:26.1.0
options: --entrypoint /bin/bash
needs: [style, doc-style]

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
SPHINXOPTS: '-j auto -W --keep-going'
run: |
. /env/bin/activate
xvfb-run make -C doc linkcheck
xvfb-run mechanical-env make -C doc linkcheck

- name: Upload HTML Documentation
uses: actions/upload-artifact@v4
Expand All @@ -95,6 +95,13 @@ jobs:
path: doc/_build/html
retention-days: 7

- name: Upload examples
uses: actions/upload-artifact@v4
with:
name: examples-out
path: examples/02_technology_showcase
retention-days: 7

doc-deploy:
name: Documentation deploy
runs-on: ubuntu-latest
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci_cd_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ jobs:
path: doc/_build/html
retention-days: 7

- name: Upload example output
uses: actions/upload-artifact@v4
with:
name: examples
path: examples/02_technology_showcase
retention-days: 7

build-failure:
name: Teams notify on failure
if: failure()
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
rev: 1.20.0
hooks:
- id: blacken-docs
additional_dependencies: [black==23.12.1]
additional_dependencies: [black==25.1.0]

- repo: https://github.com/pycqa/isort
rev: 7.0.0
Expand Down Expand Up @@ -44,4 +44,4 @@ repos:
hooks:
- id: add-license-headers
args:
- --start_year=2023
- --start_year=2023
Loading
Loading