Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

switch to goboring/golang for building (FIPS 140-2) #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .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.13.4
- image: goboring/golang:1.15.15b5
<<: *defaultenv
- image: splunk/splunk:latest
user: root
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@ test: build
@test -n "$$SPLUNK_ADDR" || { echo 'warning: SPLUNK_ADDR not set, creating new Splunk instances. This will be slow.'; }
mkdir -p $(dir $(TESTREPORT))
go clean -testcache || true
gotestsum --junitfile $(TESTREPORT) --format standard-verbose -- -cover -v ./...
$(GOBIN)/gotestsum --junitfile $(TESTREPORT) --format standard-verbose -- -cover -v ./...

.PHONY: lint
lint: dep
$(GOBIN)/golangci-lint run $(GOLANGCI_LINT_ARGS)

.PHONY: dep
dep:
go get -u gotest.tools/gotestsum
./scripts/golangci-lint.sh -b $(GOBIN) v1.20.0

.PHONY: clean
Expand Down