We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 845702c commit 1b14652Copy full SHA for 1b14652
.github/workflows/ci.yaml
@@ -72,4 +72,4 @@ jobs:
72
SIGNING_SERVER_BIN: ${{ github.workspace }}/signing-server
73
HSM_PUBLIC_KEY_FILE: ${{ github.workspace }}/public_key.pem
74
run: |
75
- go test -v ./...
+ sudo go test -v ./...
cmd/signing-server/main_test.go
@@ -66,7 +66,7 @@ func TestSoftHSMConcurrentSignRequests(t *testing.T) {
66
67
go func() {
68
if err := run(&Config{
69
- HSMModule: strings.TrimSpace(string(hsmModule)),
+ HSMModule: strings.TrimSpace(hsmModule),
70
HSMTokenLabel: tokenLabel,
71
HSMSlot: -1,
HSMKeyLabel: keyLabel,
0 commit comments