mirror of
https://github.com/containers/youki
synced 2024-11-23 01:11:58 +01:00
ff79c54968
* add cross configuration for musl Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> * use cargo.sh wapper in build.sh Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> * make tests build with musl Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> * add targets to run musl tests Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> * Use cargo.sh wrapper and cross in CI Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> * Update scripts/cargo.sh Co-Authored-By: adrianalin <pop.adrian61@gmail.com> Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> * Use glibc as cross default target --------- Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com> Co-authored-by: adrianalin <pop.adrian61@gmail.com>
15 lines
282 B
Bash
Executable File
15 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
for bin in youki integration_test runtimetest test.log; do
|
|
if [ -f $bin ]; then
|
|
rm -f ${1}/$bin
|
|
fi
|
|
done
|
|
|
|
rm -rf $ROOT/target $ROOT/runtimetest-target
|
|
|
|
exit 0 # unconditionally return zero
|