Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 81c110b

Browse files
author
Michael Weber
committedNov 6, 2020
switch to goboring/golang for building (FIPS 140-2)
1 parent 4aa7e80 commit 81c110b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

Diff for: ‎.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
working_directory: /go/workdir/src/github.com/splunk/vault-plugin-splunk
1212
docker:
13-
- image: circleci/golang:1.13.4
13+
- image: goboring/golang:1.15.3b5
1414
<<: *defaultenv
1515
- image: splunk/splunk:latest
1616
user: root

Diff for: ‎Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,15 @@ test: build
2828
@test -n "$$SPLUNK_ADDR" || { echo 'warning: SPLUNK_ADDR not set, creating new Splunk instances. This will be slow.'; }
2929
mkdir -p $(dir $(TESTREPORT))
3030
go clean -testcache || true
31-
gotestsum --junitfile $(TESTREPORT) --format standard-verbose -- -cover -v ./...
31+
$(GOBIN)/gotestsum --junitfile $(TESTREPORT) --format standard-verbose -- -cover -v ./...
3232

3333
.PHONY: lint
3434
lint: dep
3535
$(GOBIN)/golangci-lint run $(GOLANGCI_LINT_ARGS)
3636

3737
.PHONY: dep
3838
dep:
39+
go get -u gotest.tools/gotestsum
3940
./scripts/golangci-lint.sh -b $(GOBIN) v1.20.0
4041

4142
.PHONY: clean

0 commit comments

Comments
 (0)
This repository has been archived.