mirror of
https://github.com/penpot/penpot.git
synced 2025-05-03 14:35:54 +02:00
* 🔧 Fix test script (rust wasm) * 🔧 Make code compile in test mode + using aarch64 as a target for tests
11 lines
403 B
Bash
Executable file
11 lines
403 B
Bash
Executable file
#!/usr/bin/env bash
|
|
_SCRIPT_DIR=$(dirname $0);
|
|
pushd $_SCRIPT_DIR;
|
|
|
|
. ./_build_env
|
|
|
|
export SKIA_BINARIES_URL="https://github.com/penpot/skia-binaries/releases/download/0.81.0-2/skia-binaries-24dee32a277b6c7b5357-aarch64-unknown-linux-gnu-gl-svg-textlayout-binary-cache.tar.gz"
|
|
export _CARGO_PARAMS="--target=aarch64-unknown-linux-gnu";
|
|
|
|
cargo test $_CARGO_PARAMS --bin render_wasm -- --show-output
|
|
popd
|