-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Bump evmone version in docker images to 0.10.0. #14199
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ | |
| # (c) 2016-2019 solidity contributors. | ||
| #------------------------------------------------------------------------------ | ||
| FROM buildpack-deps:focal AS base | ||
| LABEL version="18" | ||
| LABEL version="19" | ||
|
|
||
| ARG DEBIAN_FRONTEND=noninteractive | ||
|
|
||
|
|
@@ -47,15 +47,11 @@ FROM base AS libraries | |
|
|
||
| # EVMONE | ||
| RUN set -ex; \ | ||
| cd /usr/src; \ | ||
| git clone --branch="v0.9.1" --recurse-submodules https://github.com/ethereum/evmone.git; \ | ||
| cd evmone; \ | ||
| mkdir build; \ | ||
| cd build; \ | ||
| cmake -G Ninja -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX="/usr" ..; \ | ||
| ninja; \ | ||
| ninja install/strip; \ | ||
| rm -rf /usr/src/evmone | ||
| wget -O /usr/src/evmone.tar.gz https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-linux-x86_64.tar.gz; \ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why for this image you decided to not build from the source?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because evmone switched to requiring C++20, which ubuntu 20.04 does not have a suitably capable compiler for. |
||
| test "$(sha256sum /usr/src/evmone.tar.gz)" = "6052b6a4eba6e81bb1bccfa9fec2caf220a25f5ff5c32c544984883ed95e6552 /usr/src/evmone.tar.gz"; \ | ||
| cd /usr; \ | ||
| tar -xf /usr/src/evmone.tar.gz; \ | ||
| rm -rf /usr/src/evmone.tar.gz | ||
|
|
||
| FROM base | ||
| COPY --from=libraries /usr/lib /usr/lib | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.