mirror of
https://github.com/containers/youki
synced 2024-11-23 17:32:15 +01:00
f4e7e300e6
* reworked the justfile to be explicit with path Signed-off-by: yihuaf <yihuaf@unkies.org> * fix the feature tests Signed-off-by: yihuaf <yihuaf@unkies.org> * add the musl test Signed-off-by: yihuaf <yihuaf@unkies.org> * moving all stub into a single dir Signed-off-by: yihuaf <yihuaf@unkies.org> --------- Signed-off-by: yihuaf <yihuaf@unkies.org>
15 lines
237 B
Bash
Executable File
15 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
for bin in youki integration_test runtimetest test.log; do
|
|
if [ -f $bin ]; then
|
|
rm -f ${1}/$bin
|
|
fi
|
|
done
|
|
|
|
rm -rf runtimetest-target
|
|
|
|
cargo clean
|
|
|
|
exit 0 # unconditionally return zero
|