mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-22 10:32:59 +00:00
11 lines
313 B
Bash
11 lines
313 B
Bash
|
#!/bin/bash
|
||
|
COMMIT=$(git rev-parse HEAD)
|
||
|
DATE=$(date --iso)
|
||
|
LOCATION=$(dirname ${BASH_SOURCE[0]})
|
||
|
{
|
||
|
cd $LOCATION
|
||
|
echo "Last run on $DATE at commit $COMMIT" | tee latest.txt
|
||
|
echo "" | tee -a latest.txt
|
||
|
cargo run -- -q --testsuite "../ProcessorTests/680x0/68000/uncompressed/" | tee -a latest.txt
|
||
|
}
|