relibc-tests: convert to toml

This commit is contained in:
Jeremy Soller 2023-06-09 12:22:58 -06:00
parent 7aba4e66cb
commit 5e756a5de8
No known key found for this signature in database
GPG Key ID: DCFCA852D3906975
2 changed files with 16 additions and 13 deletions

View File

@ -1,13 +0,0 @@
GIT=https://gitlab.redox-os.org/redox-os/relibc.git
function recipe_build {
"$REDOX_MAKE" NATIVE_RELIBC=1 -C tests -j"$($NPROC)"
skip=1
}
function recipe_stage {
dest="$(realpath $1)"
mkdir -pv "$dest/share/relibc"
cp -rv "tests" "$dest/share/relibc/tests"
skip=1
}

View File

@ -0,0 +1,16 @@
[source]
git = "https://gitlab.redox-os.org/redox-os/relibc.git"
branch = "master"
[build]
template = "custom"
script = """
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
pushd tests
export CARGO_TEST="${COOKBOOK_CARGO}"
export NATIVE_RELIBC=1
"${COOKBOOK_MAKE}" -j "${COOKBOOK_MAKE_JOBS}" all bins_verify/relibc-tests
popd
mkdir -pv "${COOKBOOK_STAGE}/share/relibc"
cp -rv "tests" "${COOKBOOK_STAGE}/share/relibc/tests"
"""