From faa2576f836359aaf65aace398fb5db67e6e3393 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Thu, 14 May 2020 18:47:37 -0400 Subject: [PATCH] CI: don't needlessly run tests twice Verifying that forth.bin is stable is enough. Also, fix shebang. --- runtests.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/runtests.sh b/runtests.sh index 7dbf2b0..d78add1 100755 --- a/runtests.sh +++ b/runtests.sh @@ -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