fix CI qemu action issue

This commit is contained in:
Sun Yimin 2024-08-23 14:58:40 +08:00 committed by GitHub
parent 90f0215a94
commit b5309dbfc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -42,3 +42,4 @@ jobs:
env:
DISABLE_SM4NI: 1
FORCE_SM4BLOCK_AESNI: 1
GOARCH: ${{ matrix.arch }}

View File

@ -31,9 +31,15 @@ jobs:
- name: Test bigmod
run: go test -v -short ./internal/bigmod/...
env:
GOARCH: ${{ matrix.arch }}
- name: Test sm2ec
run: go test -v -short ./internal/sm2ec/...
env:
GOARCH: ${{ matrix.arch }}
- name: Test subtle
run: go test -v -short ./internal/subtle/...
env:
GOARCH: ${{ matrix.arch }}