Skip to content

Commit

Permalink
Use builder image v1.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
rupurt committed Feb 12, 2019
1 parent 22b9f61 commit da793c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
go:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: echo $CACHE_VERSION > cache.version
Expand All @@ -21,7 +21,7 @@ jobs:
gorace:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: echo $CACHE_VERSION > cache.version
Expand All @@ -38,7 +38,7 @@ jobs:
rust:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: echo $CACHE_VERSION > cache.version
Expand All @@ -55,7 +55,7 @@ jobs:
sgx:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
environment:
SGX_ENABLED: yes
# XXX: These are set in the base image but circleci seems to wipe them out
Expand All @@ -79,7 +79,7 @@ jobs:
geth:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: echo $CACHE_VERSION > cache.version
Expand All @@ -96,7 +96,7 @@ jobs:
truffle:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: echo $CACHE_VERSION > cache.version
Expand All @@ -113,7 +113,7 @@ jobs:
gui:
working_directory: /go/src/github.com/smartcontractkit/chainlink
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: echo $CACHE_VERSION > cache.version
Expand All @@ -130,7 +130,7 @@ jobs:
- run: ./internal/ci/gui_test
reportcoverage:
docker:
- image: smartcontract/builder:1.0.16
- image: smartcontract/builder:1.0.17
steps:
- checkout
- run: ./internal/ci/init_gcloud
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build Chainlink
FROM smartcontract/builder:1.0.16 as builder
FROM smartcontract/builder:1.0.17 as builder

# Have to reintroduce ENV vars from builder image
ENV PATH /go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-sgx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build Chainlink with SGX
FROM smartcontract/builder:1.0.16 as builder
FROM smartcontract/builder:1.0.17 as builder

# Have to reintroduce ENV vars from builder image
ENV PATH /root/.cargo/bin:/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/sgxsdk/bin:/opt/sgxsdk/bin/x64
Expand Down

0 comments on commit da793c5

Please sign in to comment.