mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-26 18:52:25 +01:00
6 lines
335 B
Bash
Executable File
6 lines
335 B
Bash
Executable File
echo "Running with \"${@}\"..."
|
|
docker build -t wolfssl . && \
|
|
docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash -c "./autogen.sh && ./configure $(echo ${@}) && make && ./testsuite/testsuite.test" && \
|
|
docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash
|
|
echo "Exited with error code $?"
|