1
0
mirror of https://github.com/containers/youki synced 2024-09-20 02:41:47 +02:00
youki/scripts/clean.sh
Eric Fang f4e7e300e6
Fix the feature test and turn on in CI (#2060)
* 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>
2023-06-19 21:21:18 +09:00

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