File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ jobs:
125125 with :
126126 ANSYS_VERSION : ${{ inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
127127 standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
128+ test_any : true
128129 secrets : inherit
129130
130131 docker_examples :
Original file line number Diff line number Diff line change 1212 ANSYS_VERSION :
1313 required : false
1414 type : string
15+ test_any :
16+ description : " Test the any version of the wheel"
17+ required : false
18+ type : string
19+ default : ' false'
1520# Can be called manually
1621 workflow_dispatch :
1722 inputs :
2429 description : " ANSYS version to run."
2530 required : false
2631 type : string
32+ test_any :
33+ description : " Test the any version of the wheel"
34+ required : false
35+ type : string
36+ default : ' false'
2737
2838env :
2939 PACKAGE_NAME : ansys-dpf-core
5868 - name : " Build the wheel"
5969 shell : bash
6070 run : |
61- if [ ${{ matrix.os }} == "ubuntu-latest" ]; then
71+ if [ ${{ inputs.test_any }} == 'true' ]; then
72+ export platform="any"
73+ elif [ ${{ matrix.os }} == "ubuntu-latest" ]; then
6274 export platform="manylinux_2_17"
6375 else
6476 export platform="win"
You can’t perform that action at this time.
0 commit comments