1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-09-28 02:56:00 +02:00

fix syntax errors in ci.yml

This commit is contained in:
Jack O'Connor 2019-12-11 23:21:25 -05:00
parent 6823655aed
commit 59752de9bd

View File

@ -50,6 +50,6 @@ jobs:
- run: cross test --target ${{ matrix.arch }}
# Test the NEON implementation on ARM targets.
- run: cross test --target ${{ matrix.arch }} --features=c_neon
if: startsWith(${{ matrix.arch }}, 'armv7-') || startsWith($${ matrix.arch }}, 'aarch64-')
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 }}