1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

Fix missing && separator in docker command string

It seems to have worked in CircleCI without this, though;
it is unclear to me why.
This commit is contained in:
Joost Rijneveld 2019-04-05 12:51:35 +02:00
parent 2ffdc863c9
commit 3d8faae483
No known key found for this signature in database
GPG Key ID: A4FE39CF49CBC553

View File

@ -18,7 +18,7 @@ version: 2
docker run -e CI=true --rm -v `pwd`:`pwd` -w `pwd` "pqclean/ci-container:$ARCH" /bin/bash -c "
uname -a &&
export CC=${CC} &&
pip3 install -r requirements.txt
pip3 install -r requirements.txt &&
cd test && python3 -m nose --rednose --verbose"
.native_job: &nativejob
@ -35,7 +35,7 @@ version: 2
name: Run tests
command: |
export CC=${CC}
pip3 install -r requirements.txt
pip3 install -r requirements.txt &&
cd test && python3 -m nose --rednose --verbose