remove some outdated references to travis

This commit is contained in:
nhmall
2022-01-29 08:34:58 -05:00
parent 9f9551bdb3
commit c2024b8990
4 changed files with 5 additions and 5 deletions

View File

@@ -1,10 +1,10 @@
#!/bin/sh #!/bin/sh
set -x set -x
if [ -z "$TRAVIS_BUILD_DIR" ]; then if [ -z "$CI_BUILD_DIR" ]; then
export DJGPP_TOP=$(pwd)/lib/djgpp export DJGPP_TOP=$(pwd)/lib/djgpp
else else
export DJGPP_TOP="$TRAVIS_BUILD_DIR/lib/djgpp" export DJGPP_TOP="$CI_BUILD_DIR/lib/djgpp"
fi fi
if [ -z "$GCCVER" ]; then if [ -z "$GCCVER" ]; then

View File

@@ -199,7 +199,7 @@ USE_DLB = Y
#========================================== #==========================================
#========================================== #==========================================
ifdef TRAVIS_COMPILER ifdef CI_COMPILER
cc = i686-w64-mingw32-gcc.exe cc = i686-w64-mingw32-gcc.exe
ld = i686-w64-mingw32-gcc.exe ld = i686-w64-mingw32-gcc.exe
rc = windres --target=pe-i386 rc = windres --target=pe-i386
@@ -768,7 +768,7 @@ TO_INSTALL += $(DLB)
endif endif
install: $(TO_INSTALL) install: $(TO_INSTALL)
ifdef TRAVIS_COMPILER ifdef CI_COMPILER
ls -l $(SRC) ls -l $(SRC)
ls -l $(DAT) ls -l $(DAT)
ls -l $(UTIL) ls -l $(UTIL)

View File

@@ -490,7 +490,7 @@ DATABASE = $(DAT)\data.base
# ctags options # ctags options
# #
#CTAGSCMD=ctags-orig.exe #CTAGSCMD=ctags-orig.exe
!IF "$(TRAVIS_BUILD_DIR)" != "" !IF "$(CI_BUILD_DIR)" != ""
CTAGSCMD=..\lib\ctags\ctags.exe CTAGSCMD=..\lib\ctags\ctags.exe
!ELSE !ELSE
CTAGSCMD=..\..\..\ctags\ctags.exe CTAGSCMD=..\..\..\ctags\ctags.exe