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:
parent
2ffdc863c9
commit
3d8faae483
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user