git.delta.rocks / unique-network / refs/commits / 15ad7775ebba

difftreelog

ci separate workflow for collator selection

Fahrrader2023-01-18parent: #916ae42.patch.diff
in: master

11 files changed

added.docker/Dockerfile-collatorsdiffbeforeafterboth

no changes

added.docker/docker-compose.tmp-collators.j2diffbeforeafterboth

no changes

modified.docker/testnet-config/launch-config.jsondiffbeforeafterboth
111 "--unsafe-ws-external",111 "--unsafe-ws-external",
112 "-lxcm=trace"112 "-lxcm=trace"
113 ]113 ]
114 }114 },
115 {
116 "port": 31202,
117 "wsPort": 9946,
118 "rpcPort": 9935,
119 "name": "charlie",
120 "flags": [
121 "--rpc-cors=all",
122 "--unsafe-rpc-external",
123 "--unsafe-ws-external",
124 "-lxcm=trace"
125 ]
126 },
127 {
128 "port": 31203,
129 "wsPort": 9947,
130 "rpcPort": 9936,
131 "name": "dave",
132 "flags": [
133 "--rpc-cors=all",
134 "--unsafe-rpc-external",
135 "--unsafe-ws-external",
136 "-lxcm=trace"
137 ]
138 },
139 {
140 "port": 31204,
141 "wsPort": 9948,
142 "rpcPort": 9937,
143 "name": "eve",
144 "flags": [
145 "--rpc-cors=all",
146 "--unsafe-rpc-external",
147 "--unsafe-ws-external",
148 "-lxcm=trace"
149 ]
150 }
115 ]151 ]
116 }152 }
117 ],153 ],
modified.github/workflows/ci-develop.ymldiffbeforeafterboth
34 uses: ./.github/workflows/xcm.yml34 uses: ./.github/workflows/xcm.yml
35 secrets: inherit # pass all secrets from initial workflow to nested35 secrets: inherit # pass all secrets from initial workflow to nested
36 36
37 collator-selection:
38 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-collator-selection')) }} # Conditional check for draft & labels per job.
39 uses: ./.github/workflows/collator-selection.yml
40
37 forkless:41 forkless:
38 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job.42 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job.
modified.github/workflows/ci-master.ymldiffbeforeafterboth
36 uses: ./.github/workflows/xcm.yml36 uses: ./.github/workflows/xcm.yml
37 secrets: inherit # pass all secrets from initial workflow to nested37 secrets: inherit # pass all secrets from initial workflow to nested
3838
39 # testnet:39 collator-selection:
40 # uses: ./.github/workflows/testnet-build.yml40 uses: ./.github/workflows/collator-selection.yml
41 # secrets: inherit # pass all secrets from initial workflow to nested41
42 # testnet:
43 # uses: ./.github/workflows/testnet-build.yml
44 # secrets: inherit # pass all secrets from initial workflow to nested
4245
43 codestyle:46 codestyle:
44 uses: ./.github/workflows/codestyle.yml47 uses: ./.github/workflows/codestyle.yml
added.github/workflows/collator-selection.ymldiffbeforeafterboth

no changes

modifiedtests/package.jsondiffbeforeafterboth
88 "testSchedulingEVM": "mocha --timeout 9999999 -r ts-node/register ./**/eth/scheduling.test.ts",88 "testSchedulingEVM": "mocha --timeout 9999999 -r ts-node/register ./**/eth/scheduling.test.ts",
89 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts",89 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts",
90 "testBlockProduction": "mocha --timeout 9999999 -r ts-node/register ./**/block-production.test.ts",90 "testBlockProduction": "mocha --timeout 9999999 -r ts-node/register ./**/block-production.test.ts",
91 "testCollators": "RUN_COLLATOR_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/collator-selection/**.*test.ts",
91 "testCollatorSelection": "mocha --timeout 9999999 -r ts-node/register ./**/collatorSelection.*test.ts",92 "testCollatorSelection": "RUN_COLLATOR_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/collatorSelection.*test.ts",
92 "testIdentity": "mocha --timeout 9999999 -r ts-node/register ./**/identity.*test.ts",93 "testIdentity": "RUN_COLLATOR_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/identity.*test.ts",
93 "testEnableDisableTransfers": "mocha --timeout 9999999 -r ts-node/register ./**/enableDisableTransfer.test.ts",94 "testEnableDisableTransfers": "mocha --timeout 9999999 -r ts-node/register ./**/enableDisableTransfer.test.ts",
94 "testLimits": "mocha --timeout 9999999 -r ts-node/register ./**/limits.test.ts",95 "testLimits": "mocha --timeout 9999999 -r ts-node/register ./**/limits.test.ts",
95 "testEthCreateNFTCollection": "mocha --timeout 9999999 -r ts-node/register ./**/eth/createNFTCollection.test.ts",96 "testEthCreateNFTCollection": "mocha --timeout 9999999 -r ts-node/register ./**/eth/createNFTCollection.test.ts",
addedtests/src/collator-selection/collatorSelection.seqtest.tsdiffbeforeafterboth

no changes

addedtests/src/collator-selection/identity.seqtest.tsdiffbeforeafterboth

no changes

deletedtests/src/collatorSelection.seqtest.tsdiffbeforeafterboth

no changes

deletedtests/src/identity.seqtest.tsdiffbeforeafterboth

no changes