mirror of
https://github.com/penpot/penpot.git
synced 2025-04-29 14:46:21 +02:00
17 lines
492 B
Bash
Executable file
17 lines
492 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
_SCRIPT_DIR=$(dirname $0);
|
|
pushd $_SCRIPT_DIR;
|
|
|
|
. ./_build_env
|
|
|
|
export SKIA_BINARIES_URL=${SKIA_BINARIES_URL:-"https://github.com/penpot/skia-binaries/releases/download/0.81.0-3/skia-binaries-24dee32a277b6c7b5357-x86_64-unknown-linux-gnu-gl-svg-textlayout-binary-cache.tar.gz"}
|
|
export CARGO_BUILD_TARGET=${CARGO_BUILD_TARGET:-"x86_64-unknown-linux-gnu"};
|
|
|
|
cargo test --bin render_wasm -- --show-output
|
|
|
|
# Exit with the same status code as cargo test
|
|
exit $?
|
|
|
|
popd
|