worldwideportal/.ci/build

17 lines
320 B
Plaintext
Raw Normal View History

#!/bin/bash -e
set -Eeuo pipefail
export HOME=$(pwd)
export CARGO_HOME=$(pwd)/.cargo
cd wwp-repo
2024-10-13 23:32:47 +11:00
ln -s ../node_modules ./node_modules
ln -s ../target ./target
ln -s ../wwpapp ./dist
echo Running tests
cargo test --target-dir ../target --profile release
echo Building assets
2024-10-13 23:32:47 +11:00
npm install
trunk build --locked --release