From e06e45e5911fdf00e39ee9a4740e16ae00885552 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 4 Aug 2023 10:18:32 +0200 Subject: [PATCH] ci: copy new polkadot binaries to `/usr/bin` (#645) https://github.com/paritytech/polkadot/pull/7337 changed that polkadot requires three binaries which is required for the integration tests. --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 80fd0465d..b4dd8e961 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -126,6 +126,8 @@ nightly-test: - cargo build --release --features fast-runtime - mkdir -p ~/.local/bin - mv ./target/release/polkadot /usr/bin + - mv ./target/release/polkadot-execute-worker /usr/bin + - mv ./target/release/polkadot-prepare-worker /usr/bin - polkadot --version - cd - - rm -rf polkadot