Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to fix paseo CI #3036

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ clean-docker-litentry:
clean-docker-rococo:
@./scripts/clean-local-docker.sh rococo

.PHONY: clean-docker-paseo ## Clean up paseo docker images, containers, volumes, etc
clean-docker-paseo:
@./scripts/clean-local-docker.sh paseo

.PHONY: clean-binary ## Kill started polkadot and litentry-collator binaries
clean-binary:
@./scripts/clean-local-binary.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ DESTDIR="$ROOTDIR/tee-worker/docker/litentry"

# generate files
cd "$ROOTDIR"
make generate-docker-compose-rococo
make generate-docker-compose-paseo

# copy files over to `DESTDIR`
mkdir -p "$DESTDIR"
cp docker/generated-rococo/* "$DESTDIR/"
cp docker/generated-paseo/* "$DESTDIR/"
11 changes: 7 additions & 4 deletions docker/paseo-parachain-launch-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
#
# Relaychain Configuration
relaychain:
image: parity/polkadot:v0.9.42
image: parity/polkadot:v1.1.0
# TODO: `rococo-local` is used here as `paseo` has only "raw" chain spec which can't be further
# manipulated by parachain-launch
# we might need to switch to other launch tools
chain: rococo-local
env:
RUST_LOG: parachain::candidate-backing=trace,parachain::candidate-selection=trace,parachain::pvf=trace,parachain::collator-protocol=trace,parachain::provisioner=trace
Expand All @@ -13,10 +16,10 @@ relaychain:
- --execution=wasm
nodes:
- name: alice
rpcPort: ${AliceRPCPort:-9936}
rpcPort: ${AliceRPCPort:-9946}
port: ${AlicePort:-30336}
- name: bob
rpcPort: ${BobRPCPort:-9937}
rpcPort: ${BobRPCPort:-9947}
port: ${BobPort:-30337}

# Parachain Configuration
Expand All @@ -40,5 +43,5 @@ parachains:
nodes:
- flags:
- --alice
rpcPort: ${CollatorRPCPort:-9933}
rpcPort: ${CollatorRPCPort:-9944}
port: ${CollatorPort:-30333}
Loading