Skip to content
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

Switch CI to 241 #412

Merged
merged 3 commits into from
Jun 8, 2023
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
standalone_branch_suffix:
description: 'Suffix of the branch on standalone'
required: false
default: '.pre1'
default: ''


concurrency:
Expand All @@ -23,9 +23,9 @@ concurrency:
env:
PACKAGE_NAME: 'ansys-dpf-post'
MODULE: 'post'
ANSYS_VERSION: '232'
DOCUMENTATION_CNAME: 'post.docs.pyansys.com'
MAIN_PYTHON_VERSION: '3.10'
ANSYS_VERSION: '241'

jobs:
debug:
Expand Down Expand Up @@ -76,14 +76,14 @@ jobs:
uses: ansys/pydpf-actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
ANSYS_VERSION: ${{env.ANSYS_VERSION}}
ANSYS_VERSION: '241'
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
wheel: true
wheelhouse: true
standalone_suffix: ${{ inputs.standalone_suffix }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '' }}

- name: "Prepare Testing Environment"
uses: ansys/pydpf-actions/[email protected]
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
matrix:
python-version: ["3.10"]
os: ["windows-latest", "ubuntu-latest"]
ANSYS_VERSION: ["231", "222", "221"]
ANSYS_VERSION: ["232", "231", "222", "221"]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -194,17 +194,17 @@ jobs:
if: startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
uses: ./.github/workflows/examples.yml
with:
ANSYS_VERSION: "232"
ANSYS_VERSION: '241'
python_versions: '["3.10"]'
standalone_suffix: ".pre1"
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '' }}
secrets: inherit

docs:
if: startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
uses: ./.github/workflows/docs.yml
with:
ANSYS_VERSION: "232"
standalone_suffix: ".pre1"
ANSYS_VERSION: '241'
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '' }}
event_name: ${{ github.event_name }}
secrets: inherit

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ on:
env:
PACKAGE_NAME: 'ansys-dpf-post'
MODULE: 'post'
ANSYS_VERSION: '232'
DOCUMENTATION_CNAME: 'post.docs.pyansys.com'
MAIN_PYTHON_VERSION: '3.10'
ANSYS_VERSION: '241'

jobs:
debug:
Expand Down Expand Up @@ -73,14 +73,14 @@ jobs:
uses: ansys/pydpf-actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
ANSYS_VERSION: ${{env.ANSYS_VERSION}}
ANSYS_VERSION: '241'
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
wheel: true
wheelhouse: true
standalone_suffix: ".pre1"
standalone_suffix: ''

- name: "Prepare Testing Environment"
uses: ansys/pydpf-actions/[email protected]
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
matrix:
python-version: ["3.10"]
os: ["windows-latest", "ubuntu-latest"]
ANSYS_VERSION: ["231", "222", "221"]
ANSYS_VERSION: ["232", "231", "222", "221"]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -189,16 +189,16 @@ jobs:
examples:
uses: ./.github/workflows/examples.yml
with:
ANSYS_VERSION: "232"
ANSYS_VERSION: '241'
python_versions: '["3.10"]'
standalone_suffix: ".pre1"
standalone_suffix: ''
secrets: inherit

docs:
uses: ./.github/workflows/docs.yml
with:
ANSYS_VERSION: "232"
standalone_suffix: ".pre1"
ANSYS_VERSION: '241'
standalone_suffix: ''
event_name: ${{ github.event_name }}
secrets: inherit

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
ANSYS_VERSION:
required: false
type: string
default: "232"
default: "241"
standalone_suffix:
description: "Suffix of the branch on standalone"
required: false
Expand Down Expand Up @@ -52,7 +52,7 @@ on:
description: "ANSYS version"
required: true
type: string
default: "232"
default: "241"
standalone_suffix:
description: "Suffix of the branch on standalone"
required: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ on:
ANSYS_VERSION:
required: false
type: string
default: "232"
default: "241"
standalone_suffix:
description: "Suffix of the branch on standalone"
required: false
type: string
default: '.pre1'
default: ''
custom-requirements:
description: "Path to requirements.txt file to install"
required: false
Expand All @@ -39,12 +39,12 @@ on:
description: "ANSYS version to run."
required: true
type: string
default: "232"
default: "241"
standalone_suffix:
description: "Suffix of the branch on standalone"
required: false
type: string
default: '.pre1'
default: ''
custom-requirements:
description: "Path to requirements.txt file to install"
required: false
Expand Down