Skip to content

Commit

Permalink
Adding cargo-edit to unified-ci
Browse files Browse the repository at this point in the history
This allows Cargo.toml manipulation in CI, primarily, versioning.
Will be useful for publishing crates, based on tags.
  • Loading branch information
mutantcornholio committed Aug 15, 2024
1 parent c0fa0ec commit 4585f97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dockerfiles/ci-unified/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,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 @@ -315,7 +318,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

0 comments on commit 4585f97

Please sign in to comment.