Skip to content

Commit 02151c6

Browse files
authored
chore: [sc-12629] [CLI] Make Test-Nightly run OS tests sequentially (#596)
* simplify matrix config, set max-parallel to 1 * make ci perform os tests sequentially
1 parent 3ec70a9 commit 02151c6

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141

4242
strategy:
4343
fail-fast: false
44+
max-parallel: 1
4445
matrix:
4546
include:
4647
- os: macos-latest

.github/workflows/test-nightly.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
types: [nightly-release]
88
workflow_dispatch:
99
inputs:
10-
tagName:
10+
tagName:
1111
description: Release tag to use for this test run. Defaults to today's nightly release.
1212
type: string
1313

@@ -33,11 +33,9 @@ jobs:
3333
uses: ./.github/workflows/test-staging.yml
3434
strategy:
3535
fail-fast: false
36+
max-parallel: 1
3637
matrix:
37-
include:
38-
- os: macos-latest
39-
- os: ubuntu-latest
40-
- os: windows-latest
38+
os: [macos-latest, ubuntu-latest, windows-latest]
4139
with:
4240
runsOn: ${{ matrix.os }}
4341
releaseVersion: ${{ needs.get-tag.outputs.tagName }}
@@ -49,7 +47,7 @@ jobs:
4947
# name: Slack Notification
5048
# needs: test-nightly
5149
# # do not run on skipped or cancelled
52-
# if: ${{ always() && (success() || failure()) }}
50+
# if: ${{ always() && (success() || failure()) }}
5351
# runs-on: ubuntu-latest
5452
# steps:
5553
# - uses: rtCamp/action-slack-notify@v2

0 commit comments

Comments
 (0)