From cc1dade947fda00cbca4c972f67a24990d1ca119 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 30 Jul 2024 10:55:05 +0200 Subject: [PATCH] Added MinGW64 --- .github/workflows/UnitTesting.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/UnitTesting.yml b/.github/workflows/UnitTesting.yml index 9c1754f..ff82455 100644 --- a/.github/workflows/UnitTesting.yml +++ b/.github/workflows/UnitTesting.yml @@ -64,7 +64,12 @@ on: required: false default: '' type: string - ucrt64_before_scripts: + mingw64_before_script: + description: 'Scripts to execute before pytest on Windows within MSYS2 MinGW64.' + required: false + default: '' + type: string + ucrt64_before_script: description: 'Scripts to execute before pytest on Windows within MSYS2 UCRT64.' required: false default: '' @@ -287,7 +292,13 @@ jobs: if: matrix.system == 'ubuntu' && inputs.ubuntu_before_script != '' run: ${{ inputs.ubuntu_before_script }} - - name: 🐧 UCRT64 before scripts + # Windows before script + + - name: 🪟🟦 MinGW64 before scripts + if: matrix.system == 'msys2' && matrix.runtime == 'MINGW64' && inputs.mingw64_before_script != '' + run: ${{ inputs.mingw64_before_script }} + + - name: 🪟🟨 UCRT64 before scripts if: matrix.system == 'msys2' && matrix.runtime == 'UCRT64' && inputs.ucrt64_before_script != '' run: ${{ inputs.ucrt64_before_script }}