solidity/.circleci
2019-09-12 16:02:54 +02:00
..
docker Add clang docker file based on ubuntu disco 2019-09-12 16:02:54 +02:00
config.yml Add fake release test build and test runs on CircleCI. 2019-09-06 16:45:43 +02: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: Fixes logfile naming, not accidentally overriding others 2019-08-14 16:51:52 +02: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>