difftreelog
ci separate workflow for collator selection
in: master
11 files changed
.docker/Dockerfile-collatorsdiffbeforeafterbothno changes
.docker/docker-compose.tmp-collators.j2diffbeforeafterbothno changes
.docker/testnet-config/launch-config.jsondiffbeforeafterboth111 "--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 ],.github/workflows/ci-develop.ymldiffbeforeafterboth34 uses: ./.github/workflows/xcm.yml34 uses: ./.github/workflows/xcm.yml35 secrets: inherit # pass all secrets from initial workflow to nested35 secrets: inherit # pass all secrets from initial workflow to nested36 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.yml40 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..github/workflows/ci-master.ymldiffbeforeafterboth36 uses: ./.github/workflows/xcm.yml36 uses: ./.github/workflows/xcm.yml37 secrets: inherit # pass all secrets from initial workflow to nested37 secrets: inherit # pass all secrets from initial workflow to nested3838 39 # testnet:39 collator-selection:40 # uses: ./.github/workflows/testnet-build.yml40 uses: ./.github/workflows/collator-selection.yml41 # secrets: inherit # pass all secrets from initial workflow to nested4142 # testnet:43 # uses: ./.github/workflows/testnet-build.yml44 # secrets: inherit # pass all secrets from initial workflow to nested424543 codestyle:46 codestyle:44 uses: ./.github/workflows/codestyle.yml47 uses: ./.github/workflows/codestyle.yml.github/workflows/collator-selection.ymldiffbeforeafterbothno changes
tests/package.jsondiffbeforeafterboth88 "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",tests/src/collator-selection/collatorSelection.seqtest.tsdiffbeforeafterbothno changes
tests/src/collator-selection/identity.seqtest.tsdiffbeforeafterbothno changes
tests/src/collatorSelection.seqtest.tsdiffbeforeafterbothno changes
tests/src/identity.seqtest.tsdiffbeforeafterbothno changes