diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 02:48:51 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 02:48:51 +0300 |
commit | 2b55d546ba9fa4d2e71af84c96ab59a92cd6b614 (patch) | |
tree | d1fca5ffcd27617cf371d04a09a9a4fa94663276 | |
parent | README: update (diff) | |
download | aes-tools-2b55d546ba9fa4d2e71af84c96ab59a92cd6b614.tar.gz aes-tools-2b55d546ba9fa4d2e71af84c96ab59a92cd6b614.zip |
workflows/ci.yml: tweak step names
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 730f98d..d86c7c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,22 +68,22 @@ jobs: with: name: 'aes-tools-${{ matrix.os }}-${{ matrix.platform }}-asm${{ matrix.use_asm }}-${{ matrix.configuration }}' path: '${{ runner.workspace }}/install/' - - name: Run nist.py + - name: Run test/nist.py run: | python test/nist.py --path ../install/bin --log test/nist.log Get-Content test/nist.log -Tail 5 if: runner.os == 'Windows' - - name: Run cavp.py + - name: Run test/cavp.py run: | python test/cavp.py --path ../install/bin --log test/cavp.log Get-Content test/cavp.log -Tail 5 if: runner.os == 'Windows' - - name: Run nist.py --boxes + - name: Run test/nist.py --boxes run: | python test/nist.py --path ../install/bin --log test/nist.log --boxes Get-Content test/nist.log -Tail 5 if: runner.os == 'Windows' - - name: Run cavp.py --boxes + - name: Run test/cavp.py --boxes run: | python test/cavp.py --path ../install/bin --log test/cavp.log --boxes Get-Content test/cavp.log -Tail 5 |