1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-21 03:50:19 +10:00
collapseos/runtests.sh
Virgil Dupras faa2576f83 CI: don't needlessly run tests twice
Verifying that forth.bin is stable is enough. Also, fix shebang.
2020-05-14 18:58:06 -04:00

15 lines
225 B
Bash
Executable File

#!/bin/sh -e
git submodule init
git submodule update
git clean -fxd
make -C emul
make -C tests
# verify that forth.bin is stable
cp emul/forth.bin ref.bin
make -C emul updatebootstrap
cmp emul/forth.bin ref.bin
rm ref.bin