Skip to content

Commit

Permalink
Improve build.sh debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris030 committed Aug 4, 2023
1 parent 82388b4 commit c548c40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ fi
# ran twice to make sure the script exits on fail
./features.py ubuntu "$profile" >/dev/null

eval $(./features.py ubuntu "$profile" 2>/dev/null)
eval "$(./features.py ubuntu "$profile" 2>/dev/null)"

cmd="cargo $command --release --target=$target --features=$f"
cmd="$docker run --rm -it --init -v $(pwd):/src docker.io/vbeni/rust-arm-musl cargo $command --release --target=$target --features=$f"

echo $cmd
echo "$cmd"

$docker run --rm -it --init -v $(pwd):/src docker.io/vbeni/rust-arm-musl $cmd
$cmd

1 comment on commit c548c40

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Artifacts

View all

base roland
aarch64-unknown-linux-gnu Download Download
aarch64-unknown-linux-musl Download Download
armv7-unknown-linux-gnueabihf Download Download
armv7-unknown-linux-musleabihf Download Download
x86_64-pc-windows-msvc Download Download
x86_64-unknown-linux-gnu Download Download
x86_64-unknown-linux-musl Download Download

Please sign in to comment.