You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Manually on running below commands, the e2e test for softhsm and pkcs11 works:
sudo docker run -dit --name softhsm4 -p 2348:2345 vegardit/softhsm2-pkcs11-proxy
cd$HOME
apk update
# add git
apk add git
# clone cosign
git clone https://github.com/sigstore/cosign.git
# cd to cosigncd cosign/
# add make pcsc-lite-libs go command
apk add make build-base go
# test
softhsm2-util --init-token --free --label "My Token" --pin 1234 --so-pin 1234
go test -v -cover -coverprofile=./cover.out -tags=softhsm,pkcs11key -coverpkg github.com/sigstore/cosign/v2/pkg/cosign/pkcs11key test/pkcs11_test.go
Now to automate this, hey @haydentherapper I need a help, after running a container I want to run all those command automatically inside container. Currently when I run the above script, the containers run but command doesn't run inside the container, instead command runs after container gets exit, which makes no sense.
Description
Right now, the GitHub Actions tests do not run tests for PKCS11 signing. See #3334 (comment) for how we might go about adding this.
The text was updated successfully, but these errors were encountered: