Zachary Leaf | 782c54a | 2024-09-24 14:33:24 +0100 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # |
| 3 | # Copyright (c) 2024 Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | pre_tf_build() { |
Zachary Leaf | 7937b86 | 2024-10-11 12:33:50 +0100 | [diff] [blame^] | 8 | echo $PATH |
| 9 | echo $USER |
| 10 | echo $RUSTUP_HOME |
| 11 | rustup default stable |
| 12 | rustup target add --toolchain stable aarch64-unknown-none |
| 13 | make -C "$tf_root/rust" |
| 14 | make -C "$tf_root/rust" clippy |
Zachary Leaf | 782c54a | 2024-09-24 14:33:24 +0100 | [diff] [blame] | 15 | } |