mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 02:00:11 -08:00
fix #1195
This commit is contained in:
parent
c55b25d6a1
commit
b594ec05e6
4 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- "1.14.x"
|
- "1.15.x"
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
# https://github.com/travis-ci/travis-ci/issues/8361
|
# https://github.com/travis-ci/travis-ci/issues/8361
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ Oragono vendors all its dependencies. Because of this, Oragono is self-contained
|
||||||
If you're upgrading the Go version used by Oragono, there are several places where it's hard-coded and must be changed:
|
If you're upgrading the Go version used by Oragono, there are several places where it's hard-coded and must be changed:
|
||||||
|
|
||||||
1. `.travis.yml`, which controls the version that our CI test suite uses to build and test the code (e.g., for a PR)
|
1. `.travis.yml`, which controls the version that our CI test suite uses to build and test the code (e.g., for a PR)
|
||||||
2. `distrib/docker/Dockerfile`, which controls the version that the Oragono binaries in our Docker images are built with
|
2. `Dockerfile`, which controls the version that the Oragono binaries in our Docker images are built with
|
||||||
3. `go.mod`: this should be updated automatically by Go when you do module-related operations
|
3. `go.mod`: this should be updated automatically by Go when you do module-related operations
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
## build Oragono
|
## build Oragono
|
||||||
FROM golang:1.14-alpine AS build-env
|
FROM golang:1.15-alpine AS build-env
|
||||||
|
|
||||||
RUN apk add --no-cache git make curl sed
|
RUN apk add --no-cache git make curl sed
|
||||||
|
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/oragono/oragono
|
module github.com/oragono/oragono
|
||||||
|
|
||||||
go 1.14
|
go 1.15
|
||||||
|
|
||||||
require (
|
require (
|
||||||
code.cloudfoundry.org/bytefmt v0.0.0-20200131002437-cf55d5288a48
|
code.cloudfoundry.org/bytefmt v0.0.0-20200131002437-cf55d5288a48
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue