Skip to content

[Do Not Merge] Feat : Cyclic symmetry analysis #263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
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 @@ -48,7 +48,7 @@ jobs:
timeout-minutes: 60
container:
image: ghcr.io/ansys/mechanical:25.1.0
options: --entrypoint /bin/bash
options: --entrypoint /bin/bash --shm-size=2g
needs: [style, doc-style]

steps:
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.19.1
hooks:
- id: blacken-docs
additional_dependencies: [black==23.12.1]
additional_dependencies: [black==25.1.0]

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