Skip to content

Commit

Permalink
update CI badge in readme; try to get 1.12 w/ GOPATH mode working
Browse files Browse the repository at this point in the history
  • Loading branch information
jhump committed May 29, 2021
1 parent e4e8444 commit ae18e64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
configs:
shared_configs:
simple_job_steps: &simple_job_steps
- checkout
#TODO: caching config so we don't accidentally try to re-use
#cache across versions of Go...

#- restore_cache:
# keys:
# - go-mod-v4-{{ checksum "go.sum" }}
Expand All @@ -22,14 +24,16 @@ configs:
# path: /tmp/test-reports


# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
jobs:
build-1-12-gopath:
working_directory: ~/repo
working_directory: ~/gopath/github.com/jhump/protoreflect
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: "off"
PATH: ~/gopath
steps: *simple_job_steps

build-1-12:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Protocol Buffer and gRPC Reflection
[![Build Status](https://travis-ci.com/jhump/protoreflect.svg?branch=master)](https://travis-ci.com/github/jhump/protoreflect/branches)
[![Build Status](https://circleci.com/gh/jhump/protoreflect.svg?style=svg)](https://circleci.com/gh/jhump/protoreflect)
[![Go Report Card](https://goreportcard.com/badge/github.com/jhump/protoreflect)](https://goreportcard.com/report/github.com/jhump/protoreflect)

This repo provides reflection APIs for [protocol buffers](https://developers.google.com/protocol-buffers/) (also known as "protobufs" for short)
Expand Down

0 comments on commit ae18e64

Please sign in to comment.