difftreelog
ci(collators) fix naming and arguments
in: master
2 files changed
.docker/Dockerfile-collatorsdiffbeforeafterboth1ARG POLKADOT_BUILD_BRANCH2FROM uniquenetwork/builder-polkadot:${POLKADOT_BUILD_BRANCH} as polkadot31# ===== Rust builder =====4# ===== Rust builder =====2FROM uniquenetwork/services:latest as rust-builder5FROM uniquenetwork/services:latest as rust-builder3ARG RUST_TOOLCHAIN=6ARG RUST_TOOLCHAIN=222523ARG PROFILE=release26ARG PROFILE=release24ARG NETWORK27ARG NETWORK28ARG POLKADOT_LAUNCH_BRANCH25ARG BRANCH29ARG BRANCH263027WORKDIR /unique_parachain31WORKDIR /unique_parachain33# ===== RUN ======37# ===== RUN ======343835FROM ubuntu:20.0439FROM ubuntu:20.0436ARG POLKADOT_LAUNCH_BRANCH374038RUN apt-get -y update && \41RUN apt-get -y update && \39 apt-get -y install curl git && \42 apt-get -y install curl git && \54COPY --from=builder-unique /unique_parachain/unique-chain/.docker/testnet-config/launch-config.json /polkadot-launch/launch-config.json57COPY --from=builder-unique /unique_parachain/unique-chain/.docker/testnet-config/launch-config.json /polkadot-launch/launch-config.json55COPY --from=builder-unique /unique_parachain/unique-chain/target/release/unique-collator /unique-chain/target/release/58COPY --from=builder-unique /unique_parachain/unique-chain/target/release/unique-collator /unique-chain/target/release/565957COPY --from=uniquenetwork/builder-polkadot:$POLKADOT_BUILD_BRANCH /unique_parachain/polkadot/target/release/polkadot /polkadot/target/release/60COPY --from=polkadot /unique_parachain/polkadot/target/release/polkadot /polkadot/target/release/586159EXPOSE 984462EXPOSE 984460EXPOSE 994463EXPOSE 9944.github/workflows/collator-selection.ymldiffbeforeafterboth40 runs-on: [self-hosted-ci,large]40 runs-on: [self-hosted-ci,large]41 timeout-minutes: 138041 timeout-minutes: 1380424243 name: ${{ matrix.network }}-build43 name: ${{ matrix.network }}44 strategy:44 strategy:45 matrix:45 matrix:46 include: ${{fromJson(needs.execution-marix.outputs.matrix)}}46 include: ${{fromJson(needs.execution-marix.outputs.matrix)}}