Commit 0c063dec authored by Christos Gentsos's avatar Christos Gentsos

Utils: update docker build script

parent 4d119101
Pipeline #3002 failed with stage
in 0 seconds
#!/bin/bash
docker create --name build_cont arm-clang-coast:latest /bin/bash -c "cd diot-monimod/main_fw/build; make clean; make -j9"
docker cp ../../../diot-monimod build_cont:/root/
docker start -a build_cont
docker cp build_cont:/root/diot-monimod/main_fw/build/. .
docker rm build_cont
docker run --rm -it -v $(pwd)/../../:/root/diot-monimod arm-clang-coast bash -c 'cd /root/diot-monimod/main_fw/build && pwd && echo '"$@"' && make clean && make '"$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment