Added UCRT64 before scripts.

This commit is contained in:
Patrick Lehmann
2024-07-30 10:36:02 +02:00
parent fa96ee9197
commit b87d11502b

View File

@@ -64,6 +64,11 @@ on:
required: false required: false
default: '' default: ''
type: string type: string
ucrt64_before_scripts:
description: 'Scripts to execute before pytest on Windows within MSYS2 UCRT64.'
required: false
default: ''
type: string
root_directory: root_directory:
description: 'Working directory for running tests.' description: 'Working directory for running tests.'
required: false required: false
@@ -282,6 +287,10 @@ jobs:
if: matrix.system == 'ubuntu' && inputs.ubuntu_before_script != '' if: matrix.system == 'ubuntu' && inputs.ubuntu_before_script != ''
run: ${{ inputs.ubuntu_before_script }} run: ${{ inputs.ubuntu_before_script }}
- name: 🐧 UCRT64 before scripts
if: matrix.system == 'msys2' && matrix.runtime == 'UCRT64' && inputs.ucrt64_before_script != ''
run: ${{ inputs.ucrt64_before_script }}
# Read pyproject.toml # Read pyproject.toml
- name: 🔁 Extract configurations from pyproject.toml - name: 🔁 Extract configurations from pyproject.toml