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 e67b8ef commit a3b4f4d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,21 @@ jobs:
run: |
target=$(pwd)/target
pushd /tmp/artifacts
echo Find all files and directories
find . -exec ls -hl {} \;
find . -exec file {} \;
echo List all types
find . -type f -exec file {} \;
for d in *-executables
do
rm -Rf $ $target/$(echo $d | sed -e 's/-executables//g')
mv -vf $d $target/$(echo $d | sed -e 's/-executables//g')
done
popd
ls -hl target/
echo Find all files and directories
find . -exec ls -hl {} \;
echo List all types
find . -type f -exec file {} \;
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 a3b4f4d

Please sign in to comment.