mirror of https://github.com/sgoudham/uwuifyy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
359 B
Bash
17 lines
359 B
Bash
3 years ago
|
#!/usr/bin/env bash
|
||
|
# Script for building your rust projects.
|
||
|
set -e
|
||
|
|
||
|
source ci/common.bash
|
||
|
|
||
|
# $1 {path} = Path to cross/cargo executable
|
||
|
CROSS=$1
|
||
|
# $1 {string} = <Target Triple>
|
||
|
TARGET_TRIPLE=$2
|
||
|
|
||
|
required_arg $CROSS 'CROSS'
|
||
|
required_arg $TARGET_TRIPLE '<Target Triple>'
|
||
|
|
||
|
$CROSS test --target $TARGET_TRIPLE
|
||
|
$CROSS test --target $TARGET_TRIPLE --all-features
|