From c2024b8990c2c6c542c4bb2c932ee2daa582e4bc Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 29 Jan 2022 08:34:58 -0500 Subject: [PATCH] remove some outdated references to travis --- {sys => outdated/sys}/windows/vs/travisci.sh | 0 sys/msdos/fetch-cross-compiler.sh | 4 ++-- sys/windows/Makefile.mingw32 | 4 ++-- sys/windows/Makefile.msc | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename {sys => outdated/sys}/windows/vs/travisci.sh (100%) diff --git a/sys/windows/vs/travisci.sh b/outdated/sys/windows/vs/travisci.sh similarity index 100% rename from sys/windows/vs/travisci.sh rename to outdated/sys/windows/vs/travisci.sh diff --git a/sys/msdos/fetch-cross-compiler.sh b/sys/msdos/fetch-cross-compiler.sh index 72dbf05c9..5b5d44e70 100644 --- a/sys/msdos/fetch-cross-compiler.sh +++ b/sys/msdos/fetch-cross-compiler.sh @@ -1,10 +1,10 @@ #!/bin/sh set -x -if [ -z "$TRAVIS_BUILD_DIR" ]; then +if [ -z "$CI_BUILD_DIR" ]; then export DJGPP_TOP=$(pwd)/lib/djgpp else - export DJGPP_TOP="$TRAVIS_BUILD_DIR/lib/djgpp" + export DJGPP_TOP="$CI_BUILD_DIR/lib/djgpp" fi if [ -z "$GCCVER" ]; then diff --git a/sys/windows/Makefile.mingw32 b/sys/windows/Makefile.mingw32 index 894878d1e..6533e90d7 100644 --- a/sys/windows/Makefile.mingw32 +++ b/sys/windows/Makefile.mingw32 @@ -199,7 +199,7 @@ USE_DLB = Y #========================================== #========================================== -ifdef TRAVIS_COMPILER +ifdef CI_COMPILER cc = i686-w64-mingw32-gcc.exe ld = i686-w64-mingw32-gcc.exe rc = windres --target=pe-i386 @@ -768,7 +768,7 @@ TO_INSTALL += $(DLB) endif install: $(TO_INSTALL) -ifdef TRAVIS_COMPILER +ifdef CI_COMPILER ls -l $(SRC) ls -l $(DAT) ls -l $(UTIL) diff --git a/sys/windows/Makefile.msc b/sys/windows/Makefile.msc index dd501ea51..5577b687a 100644 --- a/sys/windows/Makefile.msc +++ b/sys/windows/Makefile.msc @@ -490,7 +490,7 @@ DATABASE = $(DAT)\data.base # ctags options # #CTAGSCMD=ctags-orig.exe -!IF "$(TRAVIS_BUILD_DIR)" != "" +!IF "$(CI_BUILD_DIR)" != "" CTAGSCMD=..\lib\ctags\ctags.exe !ELSE CTAGSCMD=..\..\..\ctags\ctags.exe -- 2.50.1