Skip to content

Commit

Permalink
disable flakey detection on backport
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Sep 30, 2024
1 parent 6f838e8 commit 6373485
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,29 +215,30 @@ jobs:

secrets: inherit

test-new-tests-dev:
name: Test new tests for flakes (dev)
needs: ['changes', 'build-native', 'build-next']
if: ${{ needs.changes.outputs.docs-only == 'false' }}
# disabled for backport branch
# test-new-tests-dev:
# name: Test new tests for flakes (dev)
# needs: ['changes', 'build-native', 'build-next']
# if: ${{ needs.changes.outputs.docs-only == 'false' }}

uses: ./.github/workflows/build_reusable.yml
with:
afterBuild: node scripts/test-new-tests.mjs --dev-mode
stepName: 'test-new-tests-dev'
# uses: ./.github/workflows/build_reusable.yml
# with:
# afterBuild: node scripts/test-new-tests.mjs --dev-mode
# stepName: 'test-new-tests-dev'

secrets: inherit
# secrets: inherit

test-new-tests-start:
name: Test new tests for flakes (prod)
needs: ['changes', 'build-native', 'build-next']
if: ${{ needs.changes.outputs.docs-only == 'false' }}
# test-new-tests-start:
# name: Test new tests for flakes (prod)
# needs: ['changes', 'build-native', 'build-next']
# if: ${{ needs.changes.outputs.docs-only == 'false' }}

uses: ./.github/workflows/build_reusable.yml
with:
afterBuild: node scripts/test-new-tests.mjs --prod-mode
stepName: 'test-new-tests-start'
# uses: ./.github/workflows/build_reusable.yml
# with:
# afterBuild: node scripts/test-new-tests.mjs --prod-mode
# stepName: 'test-new-tests-start'

secrets: inherit
# secrets: inherit

test-dev:
name: test dev
Expand Down Expand Up @@ -309,8 +310,7 @@ jobs:
secrets: inherit

tests-pass:
needs:
[
needs: [
'build-native',
'build-next',
'lint',
Expand All @@ -325,8 +325,8 @@ jobs:
'test-next-swc-wasm',
'test-turbopack-dev',
'test-turbopack-integration',
'test-new-tests-dev',
'test-new-tests-start',
# 'test-new-tests-dev',
# 'test-new-tests-start',
]

if: always()
Expand Down

0 comments on commit 6373485

Please sign in to comment.