1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-04 06:46:16 +02:00

merge the C code's ci.yml into the top level one

CI is not currently working due to quota issues, so I'll need to check
that this is actually working later.
This commit is contained in:
Jack O'Connor 2020-01-08 23:10:32 -05:00
parent 10c13c8d1c
commit a0d7b4f3f8
2 changed files with 10 additions and 12 deletions

View File

@ -62,3 +62,13 @@ jobs:
if: startsWith(matrix.arch, 'armv7-') || startsWith(matrix.arch, 'aarch64-')
# Test vectors. Note that this uses a hacky script due to path dependency limitations.
- run: ./test_vectors/cross_test.sh --target ${{ matrix.arch }}
# Currently only on x86.
c_tests:
name: C tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: make test
working-directory: ./c

View File

@ -1,12 +0,0 @@
name: tests
on: [push]
jobs:
x86_tests:
name: x86 tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: make test