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.
25 lines
602 B
Bash
25 lines
602 B
Bash
#!/bin/bash
|
|
set -exo pipefail
|
|
|
|
echo "starting build for TARGET $TARGET"
|
|
|
|
export CRATE_NAME=ash
|
|
|
|
SUFFIX=""
|
|
|
|
echo "$TARGET" | grep -E '^x86_64-pc-windows-gnu$' >/dev/null && SUFFIX=".exe"
|
|
|
|
# build binary
|
|
cross build --target $TARGET --release
|
|
|
|
# to check how they are built
|
|
file "target/$TARGET/release/${CRATE_NAME}$SUFFIX"
|
|
|
|
# if this commit has a tag, upload artifact to release
|
|
strip "target/$TARGET/release/${CRATE_NAME}$SUFFIX" || true # if strip fails, it's fine
|
|
mkdir -p release
|
|
cp "target/$TARGET/release/${CRATE_NAME}$SUFFIX" "release/${CRATE_NAME}-$TARGET$SUFFIX"
|
|
|
|
echo 'build success!'
|
|
exit 0
|