File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ parameters:
21
21
default : " solbuildpackpusher/solidity-buildpack-deps@sha256:048002d71a1f86f83dedb79dd057760b752256c75646ba5ad5c1bbe92e1695aa"
22
22
emscripten-docker-image :
23
23
type : string
24
- # solbuildpackpusher/solidity-buildpack-deps:emscripten-11
25
- default : " solbuildpackpusher/solidity-buildpack-deps@sha256:0ad7c65e8c54d926ba9cb80d56246e4fc49f9284ad5188aaaa4834f46ab0c315 "
24
+ # solbuildpackpusher/solidity-buildpack-deps:emscripten-12
25
+ default : " solbuildpackpusher/solidity-buildpack-deps@sha256:65a82268792a5a2ee85ad432baf04a056c3a4006941ab3a4416eb1a0614883f3 "
26
26
evm-version :
27
27
type : string
28
28
default : london
Original file line number Diff line number Diff line change 34
34
BUILD_DIR=" $1 "
35
35
fi
36
36
37
- # solbuildpackpusher/solidity-buildpack-deps:emscripten-11
37
+ # solbuildpackpusher/solidity-buildpack-deps:emscripten-12
38
38
docker run -v " $( pwd) :/root/project" -w /root/project \
39
- solbuildpackpusher/solidity-buildpack-deps@sha256:0ad7c65e8c54d926ba9cb80d56246e4fc49f9284ad5188aaaa4834f46ab0c315 \
39
+ solbuildpackpusher/solidity-buildpack-deps@sha256:65a82268792a5a2ee85ad432baf04a056c3a4006941ab3a4416eb1a0614883f3 \
40
40
./scripts/ci/build_emscripten.sh " $BUILD_DIR "
Original file line number Diff line number Diff line change 62
62
echo -n " $CIRCLE_SHA1 " > commit_hash.txt
63
63
fi
64
64
65
- # Disable warnings for unqualified " move()" calls, introduced and enabled by
65
+ # Disable warnings for unqualified ` move()` calls, introduced and enabled by
66
66
# default in clang-16 which is what the emscripten docker image uses.
67
67
# Additionally, disable the warning for unknown warnings here, as this script is
68
68
# also used with earlier clang versions.
69
- CMAKE_CXX_FLAGS=" -Wno-unqualified-std-cast-call -Wno-unknown-warning-option"
69
+ # TODO: This can be removed if and when all usages of `move()` in our codebase use the `std::` qualifier.
70
+ CMAKE_CXX_FLAGS=" -Wno-unqualified-std-cast-call"
70
71
71
72
72
73
mkdir -p " $BUILD_DIR "
Original file line number Diff line number Diff line change @@ -35,3 +35,5 @@ These scripts `scripts/ci/build.sh` and `scripts/ci/build_ossfuzz.sh` are also u
35
35
If the tests passed successfully, the docker image will get tagged by the version defined within the corresponding ` Dockerfile ` .
36
36
Finally, a comment will be added to the PR that contains the full repository, version and repository digest
37
37
of the freshly created docker image.
38
+
39
+ The files ` .circleci/config.yml ` and ` scripts/build_emscripten.sh ` need to be updated with the new hash posted in the comment.
You can’t perform that action at this time.
0 commit comments