solidity/.circleci
Daniel Kirchner 52a9de83f3
Merge pull request #7682 from ethereum/smt_z3486_tests
[SMTChecker] Update test expectations for z3 4.8.6
2019-11-12 10:30:10 +01:00
..
docker Update to Z3 4.8.6 in ubuntu clang Dockerfile. 2019-11-11 15:54:04 +01:00
config.yml Extend CircleCI MaxOS cache keys 2019-11-11 18:48:20 +01:00
osx_install_dependencies.sh Extend CircleCI MaxOS cache keys 2019-11-11 18:48:20 +01:00
README.md Inherit defaults cmake options in toolchain file used by ossfuzz builder. 2019-08-14 18:06:37 +02:00
soltest_all.sh Merges soltest tests per EVM/flags into a single one. 2019-08-14 16:51:52 +02:00
soltest.sh [circleci] Add t_osx_soltest. 2019-11-08 14:44:54 -05:00

CircleCI integration

Docker images

The docker images are build locally on the developer machine:

cd .circleci/docker/

docker build -t ethereum/solidity-buildpack-deps:ubuntu1904 -f Dockerfile.ubuntu1904 .
docker push ethereum/solidity-buildpack-deps:ubuntu1904

which you can find on Dockerhub after the push at:

https://hub.docker.com/r/ethereum/solidity-buildpack-deps

where the image tag reflects the target OS to build Solidity and run its test on.

Testing docker images locally

cd solidity
# Mounts your local solidity directory in docker container for testing
docker run -v `pwd`:/src/solidity -ti ethereum/solidity-buildpack-deps:ubuntu1904 /bin/bash
cd /src/solidity
<commands_to_test_build_with_new_docker_image>