From b8eeda23094ac714aaa9bcd8a65f52e3b7678abb Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Thu, 12 Sep 2024 10:33:26 +0800 Subject: [PATCH] sm4: ppc64x, Test Force SM4 Single Block with AES-NI --- .github/workflows/test_ppc64.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_ppc64.yaml b/.github/workflows/test_ppc64.yaml index 2efe1de..2790359 100644 --- a/.github/workflows/test_ppc64.yaml +++ b/.github/workflows/test_ppc64.yaml @@ -42,8 +42,15 @@ jobs: GOARCH: ${{ matrix.arch }} GOPPC64: ${{ matrix.ppc64 }} + - name: Test Force SM4 Single Block with AES-NI + run: go test -v -short ./sm4/... + env: + GOARCH: ${{ matrix.arch }} + GOPPC64: ${{ matrix.ppc64 }} + FORCE_SM4BLOCK_AESNI: 1 + - name: Test SM4 run: go test -v -short ./sm4/... env: GOARCH: ${{ matrix.arch }} - GOPPC64: ${{ matrix.ppc64 }} + GOPPC64: ${{ matrix.ppc64 }}