ci_build.sh: Rename BUILD_DIR

Travis is no longer the only CI so this name doesn't make sense.
This commit is contained in:
Margen67 2021-09-25 17:17:29 -10:00 committed by Kenneth J Davis
parent 4b3f7e0088
commit 908ffb49d9

View File

@ -2,10 +2,10 @@
set -e set -e
if [ -z "${TRAVIS_BUILD_DIR}" ] ; then if [ -z "${BUILD_DIR}" ] ; then
TRAVIS_BUILD_DIR=$(pwd) BUILD_DIR=$(pwd)
fi fi
echo TRAVIS_BUILD_DIR is \"${TRAVIS_BUILD_DIR}\" echo BUILD_DIR is \"${BUILD_DIR}\"
# Output directory # Output directory
rm -rf _output rm -rf _output
@ -28,8 +28,8 @@ if [ ! -d _watcom ] ; then
(cd _watcom && tar -xf ../ow-snapshot.tar.gz) (cd _watcom && tar -xf ../ow-snapshot.tar.gz)
fi fi
export PATH=$TRAVIS_BUILD_DIR/bin:$PATH:$TRAVIS_BUILD_DIR/_watcom/binl64 export PATH=$BUILD_DIR/bin:$PATH:$BUILD_DIR/_watcom/binl64
export WATCOM=$TRAVIS_BUILD_DIR/_watcom export WATCOM=$BUILD_DIR/_watcom
git clean -x -d -f -e _output -e _watcom -e ow-snapshot.tar.gz git clean -x -d -f -e _output -e _watcom -e ow-snapshot.tar.gz
make all COMPILER=owlinux make all COMPILER=owlinux