5 lines
294 B
Bash
5 lines
294 B
Bash
|
echo "Running with \"${@}\"..."
|
||
|
docker build -t wolfssl . && \
|
||
|
docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash -c "./autogen.sh && ./configure ${@} && make && ./testsuite/testsuite.test" && \
|
||
|
docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash
|