Skip to content

Commit

Permalink
Reverting golang 1.16 upgrade (#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
algojack authored Jan 26, 2022
1 parent f8daa21 commit 2ace2f8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ workflows:
name: test_with_go_<< matrix.go_version >>
matrix: &go-version-matrix
parameters:
go_version: ["1.16.11", "1.17.4"]
go_version: ["1.14.7", "1.15.15"]

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ test: idb/mocks/IndexerDb.go cmd/algorand-indexer/algorand-indexer

lint: go-algorand
golint -set_exit_status ./...
go vet -mod=mod ./...
go vet ./...

fmt:
go fmt ./...
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Indexer is a standalone service that reads committed blocks from the Algoran

# Tested Requirements Versions

* [go 1.16](https://golang.org/dl/)
* [go 1.13](https://golang.org/dl/)
* [Postgres 13](https://www.postgresql.org/download/)

# Quickstart
Expand Down
2 changes: 1 addition & 1 deletion cmd/block-generator/docker/Dockerfile-generator
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16.11-alpine
FROM golang:1.13.12-alpine

# Build and run the block generator

Expand Down
2 changes: 1 addition & 1 deletion cmd/block-generator/docker/Dockerfile-indexer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16.11-alpine
FROM golang:1.13.12-alpine

# Build and run indexer
RUN mkdir /work
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/algorand/indexer

go 1.16
go 1.13

replace github.com/algorand/go-algorand => ./third_party/go-algorand

Expand Down
2 changes: 1 addition & 1 deletion misc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_IMAGE=golang:1.16.11
ARG GO_IMAGE=golang:1.14.7
FROM $GO_IMAGE

RUN echo "Go image: $GO_IMAGE"
Expand Down

0 comments on commit 2ace2f8

Please sign in to comment.