FreeDOS/travis_test.sh
Andrew Bird 5ecfdd572c Travis: Build and test with both GCC and Watcom
Watcom compiler is downloaded and extracted if necessary. On Travis this
will be always, but if you build locally multiple times using
./travis_build, it will use the previous watcom installation.

[fixes #18]
2020-08-01 08:53:46 -04:00

18 lines
279 B
Bash
Executable File

#!/bin/sh
KVER=8632
if [ ! -f _output/KGC${KVER}.sys ] ; then
echo GCC built kernel not present
exit 1
fi
if [ ! -f _output/KWC${KVER}.sys ] ; then
echo Watcom built kernel not present
exit 1
fi
echo GCC and Watcom kernels have all been built
ls -l _output/K*
exit 0