This commit is contained in:
Daniel A. Wozniak 2024-12-05 18:46:11 -07:00 committed by Daniel Wozniak
parent 106f5c10c3
commit 8b64af11a6
2 changed files with 7 additions and 2 deletions

View file

@ -792,7 +792,8 @@ jobs:
- test-windows
strategy:
fail-fast: false
matrix: ${{ fromJSON(inputs.matrix)['linux'] }}
matrix:
include: ${{ fromJSON(inputs.matrix)['linux'] }}
env:
PIP_INDEX_URL: https://pypi.org/simple

View file

@ -64,6 +64,7 @@ jobs:
# container:
# image: ${{ matrix.container }}
# options: --privileged
if: ${{ fromJSON(inputs.matrix)['linux'] != '[ ]' }}
timeout-minutes: 120 # 2 Hours - More than this and something is wrong
strategy:
fail-fast: false
@ -191,6 +192,7 @@ jobs:
test-macos:
name: ${{ matrix.display_name }} ${{ matrix.tests-chunk }}
runs-on: ${{ matrix.runner }}
if: ${{ fromJSON(inputs.matrix)['macos'] != '[ ]' }}
timeout-minutes: 150 # 2 & 1/2 Hours - More than this and something is wrong (MacOS needs a little more time)
strategy:
fail-fast: false
@ -309,6 +311,7 @@ jobs:
name: ${{ matrix.display_name }} ${{ matrix.tests-chunk }}
runs-on: ${{ matrix.distro-slug }}
timeout-minutes: 120 # 2 Hours - More than this and something is wrong
if: ${{ fromJSON(inputs.matrix)['windows'] != '[ ]' }}
strategy:
fail-fast: false
matrix:
@ -456,7 +459,8 @@ jobs:
- test-macos
- test-windows
strategy:
matrix: ${{ fromJSON(inputs.matrix)['linux'] }}
matrix:
include: ${{ fromJSON(inputs.matrix)['linux'] }}
steps:
- name: Checkout Source Code