Skip to content

Commit

Permalink
Troubleshoot
Browse files Browse the repository at this point in the history
  • Loading branch information
mthmulders committed Dec 17, 2023
1 parent 0dab6bd commit a243366
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,18 @@ jobs:
for d in *-executables
do
arch=$(echo $d | sed -e 's/-executables//g')
echo 1 List file types
find . -type f -exec file {} \;
mv -vf $d $arch
mv -vf $arch/* $target/$arch/
mv -vf $arch $target/
done
popd
ls -hl target/
echo Find all files and directories
find . -exec ls -hl {} \;
echo List all file types
# echo Find all files and directories
# find . -exec ls -hl {} \;
echo 98 List all file types
find . -type f -exec file {} \;
echo 99 List file types of expected files
file target/x86_64-unknown-linux-gnu/release/dsmr-rs
file target/arm-unknown-linux-musleabihf/release/dsmr-rs
Expand Down

0 comments on commit a243366

Please sign in to comment.