summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-22 22:24:12 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-22 22:24:12 (GMT)
commit927ed085bda46ac11e95658f5a532e21fd9cf68f (patch)
tree4e1c3d6057bb0df1a1f5ff6ee1d5ee9f02d3eecf
parentd82bf565c799c08e5eb5080e1cb49910272f1ade (diff)
parent17dfb24e2fc42066c2873d8dddb2311db98fc862 (diff)
downloadtcl-927ed085bda46ac11e95658f5a532e21fd9cf68f.zip
tcl-927ed085bda46ac11e95658f5a532e21fd9cf68f.tar.gz
tcl-927ed085bda46ac11e95658f5a532e21fd9cf68f.tar.bz2
.travis.yml is not used any more
-rw-r--r--.travis.yml387
-rw-r--r--unix/Makefile.in1
2 files changed, 0 insertions, 388 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index b63be12..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,387 +0,0 @@
-language: c
-addons:
- apt:
- sources:
- - ubuntu-toolchain-r-test
- packages:
- - binutils-mingw-w64-i686
- - binutils-mingw-w64-x86-64
- - gcc-mingw-w64
- - gcc-mingw-w64-base
- - gcc-mingw-w64-i686
- - gcc-mingw-w64-x86-64
- - gcc-multilib
-jobs:
- include:
-# Testing on Linux GCC
- - name: "Linux/GCC/Shared"
- os: linux
- dist: focal
- compiler: gcc
- env:
- - BUILD_DIR=unix
- - name: "Linux/GCC/Shared: NO_DEPRECATED"
- os: linux
- dist: focal
- compiler: gcc
- env:
- - BUILD_DIR=unix
- - CFGOPT="CFLAGS=-DTCL_NO_DEPRECATED=1"
- - name: "Linux/GCC/Static"
- os: linux
- dist: focal
- compiler: gcc
- env:
- - CFGOPT="--disable-shared"
- - BUILD_DIR=unix
- - name: "Linux/GCC/Debug"
- os: linux
- dist: focal
- compiler: gcc
- env:
- - BUILD_DIR=unix
- - CFGOPT="--enable-symbols"
- - name: "Linux/GCC/Mem-Debug"
- os: linux
- dist: focal
- compiler: gcc
- env:
- - BUILD_DIR=unix
- - CFGOPT="--enable-symbols=mem"
-# Newer/Older versions of GCC
- - name: "Linux/GCC 10/Shared"
- os: linux
- dist: focal
- compiler: gcc-10
- addons:
- apt:
- packages:
- - g++-10
- env:
- - BUILD_DIR=unix
- - name: "Linux/GCC 5/Shared"
- os: linux
- dist: bionic
- compiler: gcc-5
- addons:
- apt:
- packages:
- - g++-5
- env:
- - BUILD_DIR=unix
-# Testing on Linux Clang
- - name: "Linux/Clang/Shared"
- os: linux
- dist: focal
- compiler: clang
- env:
- - BUILD_DIR=unix
- - name: "Linux/Clang/Shared:NO_DEPRECATED"
- os: linux
- dist: xenial
- compiler: clang
- env:
- - BUILD_DIR=unix
- - CFGOPT="CFLAGS=-DTCL_NO_DEPRECATED=1"
- - name: "Linux/Clang/Static"
- os: linux
- dist: focal
- compiler: clang
- env:
- - CFGOPT="--disable-shared"
- - BUILD_DIR=unix
- - name: "Linux/Clang/Debug"
- os: linux
- dist: focal
- compiler: clang
- env:
- - BUILD_DIR=unix
- - CFGOPT="--enable-symbols"
- - name: "Linux/Clang/Mem-Debug"
- os: linux
- dist: focal
- compiler: clang
- env:
- - BUILD_DIR=unix
- - CFGOPT="--enable-symbols=mem"
-# Testing on Mac, various styles
- - name: "macOS/Clang/Xcode 12/Shared"
- os: osx
- osx_image: xcode12.2
- env:
- - BUILD_DIR=macosx
- install: []
- script: &mactest
- - make all
- # The styles=develop avoids some weird problems on OSX
- - make test styles=develop
- - name: "macOS/Clang/Xcode 12/Shared/Unix-like"
- os: osx
- osx_image: xcode12.2
- env:
- - BUILD_DIR=unix
- - CFGOPT="--enable-dtrace"
- - name: "macOS/Clang/Xcode 12/Shared/libtommath"
- os: osx
- osx_image: xcode12.2
- env:
- - BUILD_DIR=macosx
- install: []
- script: *mactest
- addons:
- homebrew:
- packages:
- - libtommath
-# Newer MacOS versions
- - name: "macOS/Clang/Xcode 12/Universal Apps/Shared"
- os: osx
- osx_image: xcode12u
- env:
- - BUILD_DIR=macosx
- install: []
- script: *mactest
-# Older MacOS versions
- - name: "macOS/Clang/Xcode 11/Shared"
- os: osx
- osx_image: xcode11.7
- env:
- - BUILD_DIR=macosx
- install: []
- script: *mactest
- - name: "macOS/Clang/Xcode 10/Shared"
- os: osx
- osx_image: xcode10.3
- env:
- - BUILD_DIR=macosx
- install: []
- script: *mactest
- - name: "macOS/Clang/Xcode 9/Shared"
- os: osx
- osx_image: xcode9.4
- env:
- - BUILD_DIR=macosx
- install: []
- script: *mactest
- - name: "macOS/Clang/Xcode 8/Shared"
- os: osx
- osx_image: xcode8.3
- env:
- - BUILD_DIR=macosx
- install: []
- script: *mactest
-# Test with mingw-w64 cross-compile
-# Doesn't run tests because wine is only an imperfect Windows emulation
- - name: "Linux-cross-Windows/GCC/Shared/no test"
- os: linux
- dist: focal
- compiler: x86_64-w64-mingw32-gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--host=x86_64-w64-mingw32 --enable-64bit"
- script: &crosstest
- - make all tcltest
- # Include a high visibility marker that tests are skipped outright
- - >
- echo "`tput setaf 3`SKIPPED TEST: CROSS COMPILING`tput sgr0`"
-# Test with mingw-w64 (32 bit) cross-compile
-# Doesn't run tests because wine is only an imperfect Windows emulation
- - name: "Linux-cross-Windows-32/GCC/Shared/no test"
- os: linux
- dist: focal
- compiler: i686-w64-mingw32-gcc
- env:
- - BUILD_DIR=win
- - CFGOPT=--host=i686-w64-mingw32
- script: *crosstest
-# Test on Windows with MSVC native
- - name: "Windows/MSVC/Shared"
- os: windows
- compiler: cl
- env: &vcenv
- - BUILD_DIR=win
- - VCDIR="/C/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/VC/Auxiliary/Build"
- before_install: &vcpreinst
- - touch generic/tclStubInit.c generic/tclOOStubInit.c generic/tclOOScript.h
- - PATH="$PATH:$VCDIR"
- - cd ${BUILD_DIR}
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake '-f' makefile.vc test
- - name: "Windows/MSVC/Shared: NO_DEPRECATED"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'CHECKS=nodep' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'CHECKS=nodep' '-f' makefile.vc test
- - name: "Windows/MSVC/Static"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=static' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=static' '-f' makefile.vc test
- - name: "Windows/MSVC/Debug"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=symbols' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=symbols' '-f' makefile.vc test
- - name: "Windows/MSVC/Mem-Debug"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'STATS=memdbg' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'STATS=memdbg' '-f' makefile.vc test
-# Test on Windows with MSVC native (32-bit)
- - name: "Windows/MSVC-x86/Shared"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake '-f' makefile.vc test
- - name: "Windows/MSVC-x86/Shared: NO_DEPRECATED"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'CHECKS=nodep' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'CHECKS=nodep' '-f' makefile.vc test
- - name: "Windows/MSVC-x86/Static"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'OPTS=static' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'OPTS=static' '-f' makefile.vc test
- - name: "Windows/MSVC-x86/Debug"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'OPTS=symbols' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'OPTS=symbols' '-f' makefile.vc test
- - name: "Windows/MSVC-x86/Mem-Debug"
- os: windows
- compiler: cl
- env: *vcenv
- before_install: *vcpreinst
- install: []
- script:
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'STATS=memdbg' '-f' makefile.vc all tcltest
- - cmd.exe //C vcvarsall.bat x86 '&&' nmake 'STATS=memdbg' '-f' makefile.vc test
-# Test on Windows with GCC native
- - name: "Windows/GCC/Shared"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-64bit"
- before_install: &makepreinst
- - touch generic/tclStubInit.c generic/tclOOStubInit.c generic/tclOOScript.h
- - choco install -y make zip
- - cd ${BUILD_DIR}
- - name: "Windows/GCC/Shared: NO_DEPRECATED"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-64bit CFLAGS=-DTCL_NO_DEPRECATED=1"
- before_install: *makepreinst
- - name: "Windows/GCC/Static"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-64bit --disable-shared"
- before_install: *makepreinst
- - name: "Windows/GCC/Debug"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-64bit --enable-symbols"
- before_install: *makepreinst
- - name: "Windows/GCC/Mem-Debug"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-64bit --enable-symbols=mem"
- before_install: *makepreinst
-# Test on Windows with GCC native (32-bit)
- - name: "Windows/GCC-x86/Shared"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- before_install: *makepreinst
- - name: "Windows/GCC-x86/Shared: NO_DEPRECATED"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="CFLAGS=-DTCL_NO_DEPRECATED=1"
- before_install: *makepreinst
- - name: "Windows/GCC-x86/Static"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--disable-shared"
- before_install: *makepreinst
- - name: "Windows/GCC-x86/Debug"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-symbols"
- before_install: *makepreinst
- - name: "Windows/GCC-x86/Mem-Debug"
- os: windows
- compiler: gcc
- env:
- - BUILD_DIR=win
- - CFGOPT="--enable-symbols=mem"
- before_install: *makepreinst
-# "make dist" only
- - name: "Linux: make dist"
- os: linux
- dist: focal
- compiler: gcc
- env:
- - BUILD_DIR=unix
- script:
- - make dist
-before_install:
- - touch generic/tclStubInit.c generic/tclOOStubInit.c generic/tclOOScript.h
- - cd ${BUILD_DIR}
-install:
- - mkdir "$HOME/install dir"
- - ./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1)
-before_script:
- - export ERROR_ON_FAILURES=1
-script:
- - make all tcltest || echo "Something wrong, maybe a hickup, let's try again"
- - make test
- - make install
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 1d7c0cc..2ede5ae 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -2404,7 +2404,6 @@ dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tclConfig.h.in $(UNIX_DIR)/tcl.pc.in gen
for i in `ls $(DISTROOT)/pkgs/*.tar.gz 2> /dev/null`; do \
tar -C $(DISTDIR)/pkgs -xzf "$$i"; \
done
- $(DIST_INSTALL_DATA) $(TOP_DIR)/.travis.yml $(DISTDIR)
$(INSTALL_DATA_DIR) $(DISTDIR)/.github/workflows
$(DIST_INSTALL_DATA) $(TOP_DIR)/.github/workflows/*.yml $(DISTDIR)/.github/workflows