Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
working_directory: /go/workdir/src/github.com/splunk/vault-plugin-splunk
docker:
- image: circleci/golang:1.12
- image: circleci/golang:1.13.4
<<: *defaultenv
- image: splunk/splunk:latest
user: root
Expand All @@ -19,15 +19,15 @@ jobs:
- GOCACHE: /tmp/go/cache
steps:
- checkout
- run:
name: Code Quality
command: make lint
- run:
name: Wait for Splunk Container
command: curl -4sSk --retry 40 --retry-connrefused --retry-delay 3 -o /dev/null ${SPLUNK_ADDR}
- run:
name: Test
command: make test TESTREPORT=test-results/go/results.xml
- run:
name: Code Quality
command: make lint
- run:
name: Release
command: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ lint: dep

.PHONY: dep
dep:
./scripts/golangci-lint.sh -b $(GOBIN) v1.17.1
./scripts/golangci-lint.sh -b $(GOBIN) v1.20.0

.PHONY: clean
clean:
Expand Down