Skip to content

Commit

Permalink
switch to Circle CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rakyll committed Sep 4, 2017
1 parent 2a9a4ad commit 8d0aff5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.9

working_directory: /go/src/github.com/google/gops
steps:
- checkout

# specify any bash command here prefixed with `run: `
- run: go test -v ./...
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gops

[![Build Status](https://travis-ci.org/google/gops.svg?branch=master)](https://travis-ci.org/google/gops)[![GoDoc](https://godoc.org/github.com/google/gops/agent?status.svg)](https://godoc.org/github.com/google/gops/agent)
[![GoDoc](https://godoc.org/github.com/google/gops/agent?status.svg)](https://godoc.org/github.com/google/gops/agent)

gops is a command to list and diagnose Go processes currently running on your system.

Expand Down

3 comments on commit 8d0aff5

@nhooyr
Copy link

@nhooyr nhooyr commented on 8d0aff5 Sep 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the switch?

@rakyll
Copy link
Collaborator Author

@rakyll rakyll commented on 8d0aff5 Sep 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was due to the long wait times on the Travis queue. Google organization is a large one and it takes long time to wait for the CI builds.

@nhooyr
Copy link

@nhooyr nhooyr commented on 8d0aff5 Sep 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

Please sign in to comment.