-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5495 from onflow/khalil/6949-improve-network-test-ci
Fix Flakey Networking Tests and Improve CI
- Loading branch information
Showing
12 changed files
with
556 additions
and
452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
tools/test_matrix_generator/default-test-matrix-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"includeOthers": true, | ||
"packages": [ | ||
{"name": "admin"}, | ||
{"name": "cmd"}, | ||
{"name": "consensus"}, | ||
{"name": "fvm"}, | ||
{"name": "ledger"}, | ||
{"name": "state"}, | ||
{"name": "storage"}, | ||
{"name": "utils"}, | ||
{"name": "engine", "runner": "buildjet-4vcpu-ubuntu-2004" ,"subpackages": [ | ||
{"name": "engine/access"}, | ||
{"name": "engine/collection"}, | ||
{"name": "engine/common"}, | ||
{"name": "engine/consensus"}, | ||
{"name": "engine/execution/computation"}, | ||
{"name": "engine/execution"}, | ||
{"name": "engine/verification"}, | ||
{"name": "engine/execution/ingestion", "runner": "buildjet-8vcpu-ubuntu-2004"} | ||
]}, | ||
{"name": "module", "runner": "buildjet-4vcpu-ubuntu-2004" ,"subpackages": [{"name": "module/dkg"}]}, | ||
{"name": "network", "subpackages": [ | ||
{"name": "network/alsp"}, | ||
{"name": "network/p2p/connection"}, | ||
{"name": "network/p2p/scoring"}, | ||
{"name": "network/p2p", "runner": "buildjet-16vcpu-ubuntu-2004"}, | ||
{"name": "network/test/cohort1", "runner": "buildjet-16vcpu-ubuntu-2004"}, | ||
{"name": "network/test/cohort2", "runner": "buildjet-4vcpu-ubuntu-2004"}, | ||
{"name": "network/p2p/node", "runner": "buildjet-4vcpu-ubuntu-2004"} | ||
]} | ||
] | ||
} |
10 changes: 10 additions & 0 deletions
10
tools/test_matrix_generator/insecure-module-test-matrix-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"packagesPath": "./insecure", | ||
"includeOthers": false, | ||
"packages": [ | ||
{"name": "insecure", "runner": "buildjet-4vcpu-ubuntu-2004" ,"subpackages": [ | ||
{"name": "insecure/integration/functional/test/gossipsub/rpc_inspector", "runner": "buildjet-8vcpu-ubuntu-2004"}, | ||
{"name": "insecure/integration/functional/test/gossipsub/scoring", "runner": "buildjet-8vcpu-ubuntu-2004"} | ||
]} | ||
] | ||
} |
9 changes: 9 additions & 0 deletions
9
tools/test_matrix_generator/integration-module-test-matrix-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"packagesPath": "./integration", | ||
"includeOthers": false, | ||
"packages": [{ | ||
"name": "integration", | ||
"runner": "buildjet-4vcpu-ubuntu-2004", | ||
"exclude": ["integration/tests"] | ||
}] | ||
} |
Oops, something went wrong.