From 064641d0663b04758b735196a329f101e5e3d094 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 4 Aug 2023 09:41:44 +0200 Subject: [PATCH] ci: copy new polkadot binaries to `/usr/bin` 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