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