1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00

use golang 1.12 for building sops

This commit is contained in:
Tariq Ibrahim
2019-04-24 10:48:13 -07:00
parent b3a11d3bfc
commit 0bca3f96fc
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ jobs:
build:
working_directory: /go/src/go.mozilla.org/sops
docker:
- image: circleci/golang:1.8
- image: circleci/golang:1.12
steps:
- checkout
- setup_remote_docker

View File

@@ -1,5 +1,5 @@
language: go
go: 1.9
go: 1.12
go_import_path: go.mozilla.org/sops/
addons:

View File

@@ -4,7 +4,7 @@ Mozilla welcomes contributions from everyone. Here are a few guidelines and inst
# Getting started
* Make sure you have Go 1.6 or greater installed. You can find information on how to install Go [here](https://golang.org/dl/)
* Make sure you have Go 1.12 or greater installed. You can find information on how to install Go [here](https://golang.org/dl/)
* After following the [Go installation guide](https://golang.org/doc/install), run `go get go.mozilla.org/sops`. This will automatically clone this repository.
* Switch into sops's directory, which will be in `$GOPATH/src/go.mozilla.org/sops`.
* Run the tests with `make test`. They should all pass.

View File

@@ -1,4 +1,4 @@
FROM golang:1.11
FROM golang:1.12
COPY . /go/src/go.mozilla.org/sops
WORKDIR /go/src/go.mozilla.org/sops

View File

@@ -33,7 +33,7 @@ For the adventurous, unstable features are available in the `develop` branch, wh
$ git checkout develop
$ make install
(requires Go >= 1.8)
(requires Go >= 1.12)
If you don't have Go installed, set it up with: