summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-06 17:17:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-06 17:17:41 (GMT)
commit92967644582e34e59b2e9cd75c763dbf895c2760 (patch)
treecba893263f2e4b67b919b7d0ccc513e821873720 /.travis.yml
parentaff549bfb168dcfd815dc0fc87480920d517054a (diff)
downloadtcl-92967644582e34e59b2e9cd75c763dbf895c2760.zip
tcl-92967644582e34e59b2e9cd75c763dbf895c2760.tar.gz
tcl-92967644582e34e59b2e9cd75c763dbf895c2760.tar.bz2
Add MSVC "StaticPackage" build to travis. Fix another bug in winDde.test which didn't account for statically loaded dde package.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 72ecdaa..d2e3ca9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -216,6 +216,15 @@ jobs:
script:
- cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=static,msvcrt' '-f' makefile.vc all tcltest
- cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=static,msvcrt' '-f' makefile.vc test
+ - name: "Windows/MSVC/StaticPackage"
+ os: windows
+ compiler: cl
+ env: *vcenv
+ before_install: *vcpreinst
+ install: []
+ script:
+ - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=static,staticpkg,msvcrt' '-f' makefile.vc all tcltest
+ - cmd.exe //C vcvarsall.bat x64 '&&' nmake 'OPTS=static,staticpkg,msvcrt' '-f' makefile.vc test
- name: "Windows/MSVC/Debug"
os: windows
compiler: cl