2022-12-14 13:17:22 -05:00
|
|
|
echo "Running with \"${@}\"..."
|
2022-12-15 12:10:25 -05:00
|
|
|
docker build -t wolfssl --build-arg UID=$(id -u) --build-arg GID=$(id -g) . && \
|
2022-12-15 11:25:43 -05:00
|
|
|
docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash -c "./autogen.sh && ./configure $(echo ${@}) && make && ./testsuite/testsuite.test" && \
|
2022-12-14 13:17:22 -05:00
|
|
|
docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash
|
2022-12-15 11:25:43 -05:00
|
|
|
echo "Exited with error code $?"
|