tokei/ci/build.bash
VeryTastyTomato e608b7d344
fix: shellcheck warnings (#663)
SC2086: Double quote to prevent globbing and word splitting.
SC2162: read without -r will mangle backslashes
2020-11-30 07:56:58 +01:00

23 lines
564 B
Bash
Executable file

#!/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
# $3 {boolean} = Whether or not building for release or not.
RELEASE_BUILD=$3
required_arg "$CROSS" 'CROSS'
required_arg "$TARGET_TRIPLE" '<Target Triple>'
if [ -z "$RELEASE_BUILD" ]; then
$CROSS build --target "$TARGET_TRIPLE"
$CROSS build --target "$TARGET_TRIPLE" --all-features
else
$CROSS build --target "$TARGET_TRIPLE" --all-features --release
fi