mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 20:17:45 +00:00
Create *sum binaries for tests
This commit is contained in:
parent
bbce179115
commit
a395af7ee7
1 changed files with 6 additions and 0 deletions
6
.github/workflows/GNU.yml
vendored
6
.github/workflows/GNU.yml
vendored
|
@ -38,6 +38,12 @@ jobs:
|
||||||
pushd uutils
|
pushd uutils
|
||||||
make PROFILE=release
|
make PROFILE=release
|
||||||
cp target/release/install target/release/ginstall # The GNU tests rename this script before running, to avoid confusion with the make target
|
cp target/release/install target/release/ginstall # The GNU tests rename this script before running, to avoid confusion with the make target
|
||||||
|
# Create *sum binaries
|
||||||
|
for sum in b2sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum
|
||||||
|
do
|
||||||
|
sum_path="target/release/${sum}"
|
||||||
|
fest -f "${sum_path}" || cp target/release/hashsum "${sum_path}"
|
||||||
|
done
|
||||||
BUILDDIR="$PWD/target/release/"
|
BUILDDIR="$PWD/target/release/"
|
||||||
popd
|
popd
|
||||||
GNULIB_SRCDIR="$PWD/gnulib"
|
GNULIB_SRCDIR="$PWD/gnulib"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue