diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-06 17:17:41 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-06 17:17:41 (GMT) |
commit | 4404292972214f5a699f956595d5b66539e08fc6 (patch) | |
tree | cba893263f2e4b67b919b7d0ccc513e821873720 /.travis.yml | |
parent | 82ffc550db573bbc0e5cee238ebaa65642e6da77 (diff) | |
download | tcl-4404292972214f5a699f956595d5b66539e08fc6.zip tcl-4404292972214f5a699f956595d5b66539e08fc6.tar.gz tcl-4404292972214f5a699f956595d5b66539e08fc6.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.yml | 9 |
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 |