@@ -544,7 +544,7 @@ jobs:
544
544
test-new-tests-dev :
545
545
name : Test new tests for flakes (dev)
546
546
needs : ['optimize-ci', 'changes', 'build-native', 'build-next']
547
- if : ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
547
+ if : ${{ false && needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
548
548
549
549
strategy :
550
550
fail-fast : false
@@ -566,7 +566,7 @@ jobs:
566
566
test-new-tests-start :
567
567
name : Test new tests for flakes (prod)
568
568
needs : ['optimize-ci', 'changes', 'build-native', 'build-next']
569
- if : ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
569
+ if : ${{ false && needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
570
570
571
571
strategy :
572
572
fail-fast : false
@@ -589,7 +589,7 @@ jobs:
589
589
name : Test new tests when deployed
590
590
needs :
591
591
['optimize-ci', 'test-prod', 'test-new-tests-dev', 'test-new-tests-start']
592
- if : ${{ needs.optimize-ci.outputs.skip == 'false' }}
592
+ if : ${{ false && needs.optimize-ci.outputs.skip == 'false' }}
593
593
594
594
strategy :
595
595
fail-fast : false
@@ -942,8 +942,7 @@ jobs:
942
942
secrets : inherit
943
943
944
944
tests-pass :
945
- needs :
946
- [
945
+ needs : [
947
946
' build-native' ,
948
947
' build-next' ,
949
948
' lint' ,
@@ -966,9 +965,9 @@ jobs:
966
965
' test-next-swc-wasm' ,
967
966
' test-turbopack-dev' ,
968
967
' test-turbopack-integration' ,
969
- ' test-new-tests-dev' ,
970
- ' test-new-tests-start' ,
971
- ' test-new-tests-deploy' ,
968
+ # 'test-new-tests-dev',
969
+ # 'test-new-tests-start',
970
+ # 'test-new-tests-deploy',
972
971
' test-turbopack-production' ,
973
972
' test-turbopack-production-integration' ,
974
973
' test-unit-windows' ,
0 commit comments