mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
473 B
Markdown
19 lines
473 B
Markdown
|
## CircleCI integration
|
||
|
|
||
|
### Docker images
|
||
|
|
||
|
The docker images are build locally on the developer machine:
|
||
|
|
||
|
```!sh
|
||
|
cd .circleci/docker/
|
||
|
|
||
|
docker build -t ethereum/solc-buildpack-deps:ubuntu1904 -f Dockerfile.ubuntu1904 .
|
||
|
docker push solidity/solc-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.
|