blastmud/.ci/build

19 lines
398 B
Plaintext
Raw Normal View History

2023-02-12 18:00:25 +11:00
#!/bin/bash -e
set -Eeuo pipefail
2023-02-12 21:01:52 +11:00
export HOME=$(pwd)
echo Pre-build layout
ls -lR .
2023-02-12 18:00:25 +11:00
cd blastmud-repo
echo Running tests
2023-02-12 18:13:56 +11:00
cargo test --target-dir ../target --profile release
echo Running main build
2023-02-12 18:13:56 +11:00
cargo build --target-dir ../target --profile release
echo Copying artifacts
cp ../target/release/blastmud_game ../output/
cp ../target/release/blastmud_listener ../output/
2023-02-12 21:01:52 +11:00
echo Final layout
ls -lR .