From 8e4a770c4dabacf9bfa661735d5ea0ed71f0b3c4 Mon Sep 17 00:00:00 2001 From: "paul.profizi" Date: Mon, 15 Jan 2024 15:20:26 +0100 Subject: [PATCH 1/2] Switch from DPF 24.1 to 24.1.sp01 --- .github/workflows/ci.yml | 1 + .github/workflows/ci_release.yml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae77a70d5..b8948838e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/prepare_tests@v2.3 diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index 1f69c0604..8c0ac6806 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -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/prepare_tests@v2.3 @@ -190,7 +190,7 @@ 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: @@ -198,7 +198,7 @@ jobs: 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 From a8f765378d733b749d8e188e0f2c18373e9b9641 Mon Sep 17 00:00:00 2001 From: "paul.profizi" Date: Tue, 16 Jan 2024 09:49:25 +0100 Subject: [PATCH 2/2] Fix expression --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8948838e..69f72e099 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -151,7 +151,7 @@ jobs: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} install_extras: plotting wheel: false - standalone_suffix: ${{ matrix.ANSYS_VERSION == "241" && ".sp01" || '' }} + standalone_suffix: ${{ matrix.ANSYS_VERSION == '241' && '.sp01' || '' }} - name: "Prepare Testing Environment" uses: ansys/pydpf-actions/prepare_tests@v2.3