mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
ci: Move wrap-qemu into separate script
This commit is contained in:
parent
890eac8f82
commit
fa5d709fb2
2 changed files with 19 additions and 10 deletions
|
|
@ -11,16 +11,7 @@ if [ -n "$QEMU_USER_CMD" ]; then
|
||||||
# Generate all binaries, so that they can be wrapped
|
# Generate all binaries, so that they can be wrapped
|
||||||
DOCKER_EXEC make $MAKEJOBS -C src/secp256k1 VERBOSE=1
|
DOCKER_EXEC make $MAKEJOBS -C src/secp256k1 VERBOSE=1
|
||||||
DOCKER_EXEC make $MAKEJOBS -C src/univalue VERBOSE=1
|
DOCKER_EXEC make $MAKEJOBS -C src/univalue VERBOSE=1
|
||||||
for b_name in {"${BASE_OUTDIR}/bin"/*,src/secp256k1/*tests,src/univalue/{no_nul,test_json,unitester,object}}; do
|
DOCKER_EXEC "${BASE_ROOT_DIR}/ci/test/wrap-qemu.sh"
|
||||||
# shellcheck disable=SC2044
|
|
||||||
for b in $(find "${BASE_ROOT_DIR}" -executable -type f -name $(basename $b_name)); do
|
|
||||||
echo "Wrap $b ..."
|
|
||||||
DOCKER_EXEC mv "$b" "${b}_orig"
|
|
||||||
DOCKER_EXEC echo "\#\!/usr/bin/env bash" \> "$b"
|
|
||||||
DOCKER_EXEC echo "$QEMU_USER_CMD \\\"${b}_orig\\\" \\\"\\\$@\\\"" \>\> "$b"
|
|
||||||
DOCKER_EXEC chmod +x "$b"
|
|
||||||
done
|
|
||||||
done
|
|
||||||
END_FOLD
|
END_FOLD
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
18
ci/test/wrap-qemu.sh
Executable file
18
ci/test/wrap-qemu.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C.UTF-8
|
||||||
|
|
||||||
|
for b_name in {"${BASE_OUTDIR}/bin"/*,src/secp256k1/*tests,src/univalue/{no_nul,test_json,unitester,object}}; do
|
||||||
|
# shellcheck disable=SC2044
|
||||||
|
for b in $(find "${BASE_ROOT_DIR}" -executable -type f -name $(basename $b_name)); do
|
||||||
|
echo "Wrap $b ..."
|
||||||
|
mv "$b" "${b}_orig"
|
||||||
|
echo '#!/usr/bin/env bash' > "$b"
|
||||||
|
echo "$QEMU_USER_CMD \"${b}_orig\" \"\$@\"" >> "$b"
|
||||||
|
chmod +x "$b"
|
||||||
|
done
|
||||||
|
done
|
||||||
Loading…
Add table
Add a link
Reference in a new issue