mirror of
https://github.com/transistorfet/moa.git
synced 2025-02-17 18:30:33 +00:00
12 lines
325 B
Bash
12 lines
325 B
Bash
|
#!/bin/bash
|
||
|
COMMIT=$(git rev-parse HEAD)
|
||
|
DATE=$(date --iso)
|
||
|
LOCATION=$(dirname ${BASH_SOURCE[0]})
|
||
|
RESULTS=latest.txt
|
||
|
{
|
||
|
cd $LOCATION
|
||
|
echo "Last run on $DATE at commit $COMMIT" | tee $RESULTS
|
||
|
echo "" | tee -a $RESULTS
|
||
|
cargo run -- -q --testsuite "../jsmoo/misc/tests/GeneratedTests/z80/v1/" | tee -a $RESULTS
|
||
|
}
|