From 1ce0764b2e1dc61875319d027ca898ee3a6e59b1 Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Sun, 23 Aug 2020 17:27:47 -0400 Subject: [PATCH] ci: Try alternative wix install... --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5f14056b..7ff4caee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,10 +23,8 @@ before_install: export TARGET=x86_64-unknown-linux-gnu; elif [[ $TRAVIS_OS_NAME == "windows" ]]; then export TARGET=x86_64-pc-windows-msvc; - if [[ -z $TRAVIS_TAG ]]; then - choco install nuget.commandline; - nuget install WiX -version 3.11.1; - fi + powershell Install-WindowsFeature Net-Framework-Core; + choco install -y wixtoolset; elif [[ $TRAVIS_OS_NAME == "osx" ]]; then export TARGET=x86_64-apple-darwin; fi