diff options
| author | Gangzheng Tong <tonggangzheng@gmail.com> | 2025-05-20 16:01:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-20 16:01:59 -0700 |
| commit | 52d70f37f66d8fc34bc142386490bdcde0fc7db0 (patch) | |
| tree | e95d679dad312862362b2afd2f2559d496bbad26 /.github/workflows/ci.yml | |
| parent | ccb1dd5ffb8edb0086230fdcf5e16936c2bfd37f (diff) | |
Fix retry logic and skip high intermittent test failure (#7175)
* skip recordReplay; fix retrying logic for unit test
* Allow the CI to run with manual dispatch
* increase failed test limit to 100
* reduce the serve count to 2
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a4007183..dbfd35ca3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,7 @@ name: CI on: + workflow_dispatch: push: branches: [master] pull_request: @@ -80,7 +81,7 @@ jobs: full-gpu-tests: true runs-on: [Windows, self-hosted, "GCP-T4"] has-gpu: true - server-count: 8 + server-count: 2 fail-fast: false runs-on: ${{ matrix.runs-on }} @@ -191,6 +192,7 @@ jobs: -category ${{ matrix.test-category }} \ -api all-cpu \ -expected-failure-list tests/expected-failure-github.txt \ + -expected-failure-list tests/expected-failure-record-replay-tests.txt \ -skip-reference-image-generation \ -show-adapter-info \ ${{ matrix.config == 'debug' && '-disable-debug-layers' || '' }} |
