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

Adding cargo-edit and gh to ci-unified #651

Merged
merged 3 commits into from
Aug 15, 2024
Merged
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
17 changes: 9 additions & 8 deletions dockerfiles/ci-unified/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ RUN pip install yq

### generic ci ####

ARG GH_TOOL_VERSION="2.54.0"

RUN wget "https://github.com/cli/cli/releases/download/v${GH_TOOL_VERSION}/gh_${GH_TOOL_VERSION}_linux_amd64.deb" && \
dpkg -i "gh_${GH_TOOL_VERSION}_linux_amd64.deb"

ARG RUST_STABLE_VERSION="1.77.0"

# generic ci | install stable rust
Expand Down Expand Up @@ -133,6 +138,9 @@ RUN cargo install zepter --locked --version 0.15.0
# generic ci | install wasm-gc. useful for stripping slimming down wasm binaries
RUN cargo install wasm-gc

# generic ci | install cargo-edit. Manipilation of Cargo.tomls (like bumping versions) in CI
RUN cargo install cargo-edit

# generic ci | install cargo hfuzz and honggfuzz dependencies
RUN apt-get -y update && \
apt-get install -y binutils-dev libunwind-dev libblocksruntime-dev && \
Expand Down Expand Up @@ -237,13 +245,6 @@ RUN curl --silent https://api.github.com/repos/mozilla/geckodriver/releases/late
chmod +x geckodriver && \
mv geckodriver /usr/local/bin/

# !!! TODO: check substrate-contracts-node in contracts-ci
# ink-waterfall-ci
# `substrate-contracts-node` is a Substrate chain with smart contract functionality.
# `--locked` ensures the project's `Cargo.lock` is used.
RUN cargo install --git https://github.com/paritytech/substrate-contracts-node.git \
--locked --branch main --force

# ink-waterfall-ci
# We additionally install the `substrate-contracts-node` as `substrate-contracts-rand-extension`.
# This installation though is a modified `substrate-contracts-node`, so that ink!'s
Expand Down Expand Up @@ -314,7 +315,7 @@ ARG CODECOV_CLI_VERSION="v0.6.0"
RUN curl -Os https://cli.codecov.io/${CODECOV_CLI_VERSION}/linux/codecov && \
curl -Os https://cli.codecov.io/${CODECOV_CLI_VERSION}/linux/codecov.SHA256SUM && \
curl -Os https://cli.codecov.io/${CODECOV_CLI_VERSION}/linux/codecov.SHA256SUM.sig && \
gpg --verify codecov.SHA256SUM.sig codecov.SHA256SUM && \
gpg --verify codecov.SHA256SUM.sig codecov.SHA256SUM && \
shasum -a 256 -c codecov.SHA256SUM && \
chmod +x codecov && \
mv codecov /usr/local/bin/codecovcli && \
Expand Down