#!/usr/bin/env bashset-ex# Incorporate TARGET env var to the build and test processcargo build --target"$TARGET" --verbose# We cannot run arm executables on linuxif[[$TARGET!= arm-unknown-linux-gnueabihf ]]&&[[$TARGET!= aarch64-unknown-linux-gnu ]];thencargo test --target"$TARGET" --verbose# Run 'cloak'cargo run --target"$TARGET" -- view test_appfi