CI: don't needlessly run tests twice

Verifying that forth.bin is stable is enough. Also, fix shebang.
This commit is contained in:
Virgil Dupras 2020-05-14 18:47:37 -04:00
parent 87b51a6261
commit faa2576f83
1 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#/bin/sh -e
#!/bin/sh -e
git submodule init
git submodule update
@ -7,6 +7,8 @@ git clean -fxd
make -C emul
make -C tests
# let's try again with an updated boot bin
make -C emul updatebootstrap all
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