Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ orbs:
executors:
dockerizer:
docker:
- image: cimg/go:1.16.6
- image: cimg/go:1.17.6
environment:
IMAGE_NAME: filecoin/lily
golang:
docker:
- image: circleci/golang:1.16.6
- image: cimg/go:1.17.6

commands:
install-deps:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
version: "18.09.3"
version: "20.10.6"
- publish-docker-from-branch-dev
- publish-docker-from-branch-production
publish-docker-from-tag:
Expand All @@ -112,7 +112,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
version: "18.09.3"
version: "20.10.6"
- publish-docker-semver-dev
- publish-docker-semver-production
mod-tidy-check:
Expand All @@ -124,7 +124,7 @@ jobs:
test:
resource_class: large
docker:
- image: cimg/go:1.16.6
- image: cimg/go:1.17.6
- image: timescale/timescaledb:2.5.0-pg13
environment:
POSTGRES_PASSWORD: password
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
integration-test:
resource_class: large
docker:
- image: cimg/go:1.16.6
- image: cimg/go:1.17.6
- image: timescale/timescaledb:2.5.0-pg13
environment:
POSTGRES_PASSWORD: password
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
version: "18.09.3"
version: "20.10.6"
- run:
name: Build Production Mainnet Docker image
command: make docker-mainnet
Expand All @@ -257,7 +257,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
version: "18.09.3"
version: "20.10.6"
- run:
name: Build Dev Mainnet Docker image
command: make docker-mainnet-dev
Expand All @@ -267,7 +267,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
version: "18.09.3"
version: "20.10.6"
- run:
name: Build Production Calibnet Docker image
command: make docker-calibnet
Expand All @@ -277,7 +277,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
version: "18.09.3"
version: "20.10.6"
- run:
name: Build Dev Calibnet Docker image
command: make docker-calibnet-dev
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL=/usr/bin/env bash

GO_BUILD_IMAGE?=golang:1.16.5
GO_BUILD_IMAGE?=golang:1.17.6
PG_IMAGE?=postgres:10
REDIS_IMAGE?=redis:6
LILY_IMAGE_NAME?=filecoin/lily
Expand Down
Loading