Skip to content

Commit

Permalink
set codeRetentionPeriod for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
BuddyGlas committed Dec 9, 2024
1 parent c949076 commit 34ac121
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .baedeker/just-tests.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ local relay = {
},
scheduling_lookahead:5,
max_validators_per_core:1,
minimum_backing_votes:2,
needed_approvals:2,
minimum_backing_votes:1,
needed_approvals:1,
on_demand_cores:5,
validation_upgrade_cooldown:400,
validation_upgrade_delay:200,
Expand All @@ -45,7 +45,7 @@ local relay = {
wantedKeys: 'relay',
expectedDataPath: '/parity',
},
for name in ['alice', 'bob', 'charlie', 'dave', 'eve']
for name in ['alice', 'bob', 'charlie', 'dave', 'eve', 'ferdie']
},
};

Expand All @@ -58,7 +58,7 @@ local unique = {
m.genericPara($),
m.simplifyGenesisName(),
{
_code: cql.toHex(importbin '../runtime.compact.compressed.wasm'),
_code: cql.toHex(importbin 'runtime.compact.compressed.wasm'),
},
m.unsimplifyGenesisName(),
]),
Expand Down
9 changes: 5 additions & 4 deletions .baedeker/main-process.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ local relay = {
},
scheduling_lookahead:5,
max_validators_per_core:1,
minimum_backing_votes:2,
needed_approvals:2,
minimum_backing_votes:1,
needed_approvals:1,
on_demand_cores:5,
validation_upgrade_cooldown:400,
validation_upgrade_delay:200,
minimum_validation_upgrade_delay:10,
minimum_validation_upgrade_delay:15,
codeRetentionPeriod: 1200,
},
},
},
Expand All @@ -45,7 +46,7 @@ local relay = {
wantedKeys: 'relay',
expectedDataPath: '/parity',
},
for name in ['alice', 'bob', 'charlie', 'dave', 'eve']
for name in ['alice', 'bob', 'charlie', 'dave', 'eve', 'ferdie']
},
};

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/just-tests-without-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

timeout-minutes: 1380

name: ${{ matrix.network }}-update
name: ${{ matrix.network }}-tests

continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main-process-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ jobs:
.baedeker/vendor
input-modules: |
lib:baedeker-library/ops/nginx-dev.libsonnet
lib:baedeker-library/ops/devtools.libsonnet
tla-str: |
relay_spec=${{ env.RELAY_CHAIN_TYPE }}-local
forked_spec=${{ matrix.network }}
Expand Down

0 comments on commit 34ac121

Please sign in to comment.