mirror of
https://github.com/gleam-lang/gleam.git
synced 2025-12-23 09:47:08 +00:00
38 lines
868 B
Bash
Executable file
38 lines
868 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
GLEAM_COMMAND=${GLEAM_COMMAND:-"cargo run --quiet --"}
|
|
|
|
g() {
|
|
echo "Running: $GLEAM_COMMAND $@"
|
|
$GLEAM_COMMAND "$@"
|
|
}
|
|
|
|
echo Resetting the build directory to get to a known state
|
|
rm -fr build
|
|
|
|
echo This should succeed regardless of target as it is a dependency module
|
|
g run --module=hello_joe
|
|
g run --module=hello_joe --target=erlang
|
|
g run --module=hello_joe --target=javascript
|
|
|
|
echo Building and running for JavaScript should succeed
|
|
g build --target=javascript
|
|
g run --target=javascript
|
|
|
|
echo Building for Erlang should fail, even if previously a Erlang dependency was built
|
|
if g build --target=erlang; then
|
|
echo "Expected build to fail"
|
|
exit 1
|
|
fi
|
|
|
|
echo Running for Erlang should fail, even if previously a Erlang dependency was built
|
|
if g run --target=erlang; then
|
|
echo "Expected run to fail"
|
|
exit 1
|
|
fi
|
|
|
|
echo
|
|
echo Success! 💖
|
|
echo
|