-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from DPF 24.1 to 24.1.sp01 (#568)
* Switch from DPF 24.1 to 24.1.sp01 * Fix expression
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,6 +151,7 @@ jobs: | |
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} | ||
install_extras: plotting | ||
wheel: false | ||
standalone_suffix: ${{ matrix.ANSYS_VERSION == '241' && '.sp01' || '' }} | ||
|
||
- name: "Prepare Testing Environment" | ||
uses: ansys/pydpf-actions/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
standalone_branch_suffix: | ||
description: 'Suffix of the branch on standalone' | ||
required: false | ||
default: '.pre0' | ||
default: '.sp01' | ||
|
||
#┌───────────── minute (0 - 59) | ||
#│ ┌───────────── hour (0 - 23) | ||
|
@@ -87,7 +87,7 @@ jobs: | |
install_extras: plotting | ||
wheel: true | ||
wheelhouse: true | ||
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | ||
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.sp01' }} | ||
|
||
- name: "Prepare Testing Environment" | ||
uses: ansys/pydpf-actions/[email protected] | ||
|
@@ -190,15 +190,15 @@ jobs: | |
with: | ||
ANSYS_VERSION: '241' | ||
python_versions: '["3.10"]' | ||
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | ||
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.sp01' }} | ||
secrets: inherit | ||
|
||
docs: | ||
uses: ./.github/workflows/docs.yml | ||
with: | ||
ANSYS_VERSION: '241' | ||
python_version: "3.10" | ||
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | ||
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.sp01' }} | ||
event_name: ${{ github.event_name }} | ||
secrets: inherit | ||
|
||
|