mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
meh
This commit is contained in:
parent
106f5c10c3
commit
8b64af11a6
2 changed files with 7 additions and 2 deletions
3
.github/workflows/test-action.yml
vendored
3
.github/workflows/test-action.yml
vendored
|
@ -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
|
||||
|
||||
|
|
6
.github/workflows/test-packages-action.yml
vendored
6
.github/workflows/test-packages-action.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue