Skip to content

Commit

Permalink
Test architecture arm/v6 (part 5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mansuf committed Jun 7, 2024
1 parent c5bffeb commit 2f25de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arm_v6_workaround.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Workaround to install rust for building Dockerfile.optional in ARM v6 machine CI
export ARCHITECTURE=$(lscpu | grep Architecture | sed -e 's/Architecture:\s//g')
echo $ARCHITECTURE
if [ "$ARCHITECTURE" = "armv71" ]; then
if [ $ARCHITECTURE = "armv71" ]; then
export QEMU_LD_PREFIX=/usr/arm-linux-gnueabi
else
raise_error_lol_command_not_found;
Expand Down

0 comments on commit 2f25de9

Please sign in to comment.