Skip to content

Commit

Permalink
ci: fix assethub for quartz and unique
Browse files Browse the repository at this point in the history
modify not work for FromScratchGenesis.
Fixed in PR UniqueNetwork/baedeker#6
  • Loading branch information
vklachkov committed Nov 15, 2024
1 parent 8964827 commit 854a89d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .baedeker/up.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
set -e
BDK_DIR=$(dirname $(readlink -f "$0"))
RUST_LOG=info baedeker --spec=docker -J$BDK_DIR/vendor/ --generator=docker_compose=$BDK_DIR/.bdk-env --generator=docker_compose_discover=$BDK_DIR/.bdk-env/discover.env --secret=file=$BDK_DIR/.bdk-env/secret --tla-str=relay_spec=rococo-local --input-modules='lib:baedeker-library/ops/nginx.libsonnet' --input-modules='lib:baedeker-library/ops/devtools.libsonnet' --tla-str=repoDir=$(realpath $BDK_DIR/..) $@ $BDK_DIR/rewrites.jsonnet
RUST_LOG=info ./baedeker --spec=docker -J$BDK_DIR/vendor/ --generator=docker_compose=$BDK_DIR/.bdk-env --generator=docker_compose_discover=$BDK_DIR/.bdk-env/discover.env --secret=file=$BDK_DIR/.bdk-env/secret --tla-str=relay_spec=rococo-local --tla-code=assethub_spec="import 'assethub-spec.json'" --input-modules='lib:baedeker-library/ops/nginx.libsonnet' --input-modules='lib:baedeker-library/ops/devtools.libsonnet' --tla-str=repoDir=$(realpath $BDK_DIR/..) $@ $BDK_DIR/rewrites.jsonnet
cd $BDK_DIR/.bdk-env
docker compose up -d --wait --remove-orphans
3 changes: 1 addition & 2 deletions .baedeker/xcm-quartz.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ local assethub = {
paraId: 1004,
spec: {
FromScratchGenesis: {
spec: assethub_spec,
modify:: m.genericPara($),
spec: m.genericPara($)(assethub_spec),
}
},
nodes: {
Expand Down
3 changes: 1 addition & 2 deletions .baedeker/xcm-unique.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ local assethub = {
paraId: 1004,
spec: {
FromScratchGenesis: {
spec: assethub_spec,
modify:: m.genericPara($),
spec: m.genericPara($)(assethub_spec),
}
},
nodes: {
Expand Down

0 comments on commit 854a89d

Please sign in to comment.