5ecfdd572c
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]
18 lines
279 B
Bash
Executable File
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
|