diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 02:17:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 02:33:05 +0300 |
commit | 29594520d3178275123d0be5824ccd6f872118e5 (patch) | |
tree | 9f5b3bd9ba6eb529c6a890034b6c852eee62b16f /.github/workflows | |
parent | add GitHub workflow (diff) | |
download | aes-tools-29594520d3178275123d0be5824ccd6f872118e5.tar.gz aes-tools-29594520d3178275123d0be5824ccd6f872118e5.zip |
workflows/ci.yml: run the test scripts
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3bb5fa..730f98d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,3 +68,28 @@ jobs: with: name: 'aes-tools-${{ matrix.os }}-${{ matrix.platform }}-asm${{ matrix.use_asm }}-${{ matrix.configuration }}' path: '${{ runner.workspace }}/install/' + - name: Run 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 + 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 + 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 + run: | + python test/cavp.py --path ../install/bin --log test/cavp.log --boxes + Get-Content test/cavp.log -Tail 5 + if: runner.os == 'Windows' + - name: Run test/file.py + run: | + python test/file.py --path ../install/bin --log test/file.log + Get-Content test/file.log -Tail 5 + if: runner.os == 'Windows' |