Skip to content

Commit

Permalink
Merge pull request #719 from simonpasquier/enable-circleci
Browse files Browse the repository at this point in the history
Add Circle CI configuration
  • Loading branch information
beorn7 committed Mar 3, 2020
2 parents 5538bed + 2725e8e commit 346356f
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,74 @@
---
version: 2.1

orbs:
go: circleci/go@0.2.0

jobs:
test:
parameters:
go_version:
type: string
run_style:
type: boolean
default: false
run_lint:
type: boolean
default: false
use_gomod_cache:
type: boolean
default: true
docker:
- image: circleci/golang:<< parameters.go_version >>
working_directory: /go/src/github.com/prometheus/client_golang
steps:
- checkout
- when:
condition: << parameters.use_gomod_cache >>
steps:
- go/load-cache:
key: v1-go<< parameters.go_version >>
- run: make check_license unused test
- when:
condition: << parameters.run_lint >>
steps:
- run: make lint
- when:
condition: << parameters.run_style >>
steps:
- run: make style
- when:
condition: << parameters.use_gomod_cache >>
steps:
- go/save-cache:
key: v1-go<< parameters.go_version >>
- store_test_results:
path: test-results

workflows:
version: 2
client_golang:
jobs:
# Refer to README.md for the currently supported versions.
- test:
name: go-1-9
go_version: "1.9"
use_gomod_cache: false
- test:
name: go-1-10
go_version: "1.10"
use_gomod_cache: false
- test:
name: go-1-11
go_version: "1.11"
run_lint: true
- test:
name: go-1-12
go_version: "1.12"
run_lint: true
- test:
name: go-1-13
go_version: "1.13"
run_lint: true
# Style is only checked against the latest supported Go version.
run_style: true

0 comments on commit 346356f

Please sign in to comment.