mirror of
https://github.com/reacherhq/check-if-email-exists.git
synced 2026-09-10 16:01:10 +00:00
* chore: Remove AMQP-based worker * Fix build * Update readmes * Remove useless deps --------- Co-authored-by: Amaury <1293565+amaury1729@users.noreply.github.com>
17 lines
359 B
Bash
Executable File
17 lines
359 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
|
|
|
|
required_arg $CROSS 'CROSS'
|
|
required_arg $TARGET_TRIPLE '<Target Triple>'
|
|
|
|
$CROSS test --target $TARGET_TRIPLE
|
|
$CROSS test --target $TARGET_TRIPLE --all-features
|