mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 12:15:09 -05:00
- add an helper script to serialize make commands - serialize mypy commands as they may overwrite each others cache - format coverage command to avoid being ridiculously long
15 lines
172 B
Bash
Executable File
15 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set +e
|
|
|
|
EXIT_CODE=0
|
|
|
|
for make_target in "$@"; do
|
|
make "${make_target}"
|
|
if [[ "$?" != "0" ]]; then
|
|
EXIT_CODE=1
|
|
fi
|
|
done
|
|
|
|
exit "${EXIT_CODE}"
|