Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reverting golang 1.16 upgrade #841

Merged
merged 1 commit into from
Jan 26, 2022
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
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