-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparation for release v0.9.22 (#50)
* Switch to Rust 1.64 and bump version to 0.9.22 * Bump tools (tera & toml) to their latest versions * Add protobuf compiler
- Loading branch information
Showing
11 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM docker.io/library/ubuntu:22.04 | |
LABEL maintainer "[email protected]" | ||
LABEL description="This image contains tools for Substrate blockchains runtimes." | ||
|
||
ARG RUSTC_VERSION="1.62.0" | ||
ARG RUSTC_VERSION="1.64.0" | ||
ENV RUSTC_VERSION=$RUSTC_VERSION | ||
ENV DOCKER_IMAGE="paritytech/srtool" | ||
ENV PROFILE=release | ||
|
@@ -25,14 +25,14 @@ ENV DEBIAN_FRONTEND=noninteractive | |
|
||
# Tooling | ||
ARG SUBWASM_VERSION=0.18.0 | ||
ARG TERA_CLI_VERSION=0.2.1 | ||
ARG TOML_CLI_VERSION=0.2.1 | ||
ARG TERA_CLI_VERSION=0.2.2 | ||
ARG TOML_CLI_VERSION=0.2.2 | ||
|
||
COPY ./templates ${SRTOOL_TEMPLATES}/ | ||
RUN apt update && \ | ||
apt upgrade -y && \ | ||
apt install --no-install-recommends -y \ | ||
cmake pkg-config libssl-dev make \ | ||
cmake pkg-config libssl-dev make protobuf-compiler \ | ||
git clang bsdmainutils ca-certificates curl && \ | ||
curl -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 --output /usr/bin/jq && chmod a+x /usr/bin/jq && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* && apt clean | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.62.0 | ||
1.64.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.21 | ||
0.9.22 |