Skip to content

Commit

Permalink
CircleCI: lock CI to go1.11 until GopherJS works with 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
johanbrandhorst committed Feb 28, 2019
1 parent 4958108 commit f66ed1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ version: 2
jobs:
build:
docker:
- image: "golang:latest"
- image: 'golang:1.11'
working_directory: /go/src/github.com/johanbrandhorst/protobuf
steps:
- checkout
- run: go install ./vendor/github.com/gopherjs/gopherjs
- run: make build
dep:
docker:
- image: "golang:latest"
- image: 'golang:1.11'
working_directory: /go/src/github.com/johanbrandhorst/protobuf
steps:
- checkout
Expand All @@ -19,14 +19,14 @@ jobs:
- run: git diff --exit-code
generate:
docker:
- image: "golang:latest"
- image: 'golang:1.11'
working_directory: /go/src/github.com/johanbrandhorst/protobuf
steps:
- checkout
- run:
name: Install protoc
environment:
PROTOBUF_VERSION: "3.6.1"
PROTOBUF_VERSION: '3.6.1'
command: >
apt-get update
Expand Down

0 comments on commit f66ed1c

Please sign in to comment.