mirror of
https://github.com/reacherhq/check-if-email-exists.git
synced 2026-09-10 16:01:10 +00:00
* ci: Remove appveyor and travis, use GA * Only stable * On push master * Use vendored openssl * Remove need of openssl in README * Remove windows ci * Remove windows
24 lines
572 B
Bash
Executable File
24 lines
572 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> e.g. x86_64-pc-windows-msvc
|
|
TARGET_TRIPLE=$2
|
|
# $3 {boolean} = Are we building for deployment?
|
|
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
|
|
|