diff options
author | Richard Weickelt <richard@weickelt.de> | 2019-10-10 19:43:30 +0200 |
---|---|---|
committer | Richard Weickelt <richard@weickelt.de> | 2019-10-11 08:58:07 +0000 |
commit | 8a807533ae6b2cccb022ecc6cf436ac2f6a7339f (patch) | |
tree | 2928aabc50130f9b47d2f9110f03b1b692e188d3 /.travis.yml | |
parent | 91a727ec4957eca21d93d117a2e725bb5b3a9f5d (diff) | |
download | qbs-8a807533ae6b2cccb022ecc6cf436ac2f6a7339f.tar.gz |
Remove superfluous calls to Windows Defender
They seem to no longer work and it is unclear whether they
were even needed.
Change-Id: I784ecca1920be16ff6712c3b26340328c58ce75c
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index ad6fbaaaf..d37139695 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,18 +82,6 @@ jobs: WITH_DOCS=0 QBS_BUILD_PROFILE=qt before_install: - # Disable unnecessary background services which tend to consume - # a lot of resources - - powershell -Command 'Set-MpPreference -DisableRealtimeMonitoring $true' - - powershell -Command 'Set-MpPreference -DisableArchiveScanning $true' - - powershell -Command 'Set-MpPreference -DisableBehaviorMonitoring $true' - - powershell -Command 'sc.exe config TrustedInstaller start=disabled; sc.exe stop TrustedInstaller' - - powershell -Command 'sc.exe config wuauserv start=disabled; sc.exe stop wuauserv' - - powershell -Command 'Add-MpPreference -ExclusionPath C:\' - - powershell -Command 'Add-MpPreference -ExclusionProcess qbs.exe' - - powershell -Command 'Add-MpPreference -ExclusionProcess cl.exe' - - powershell -Command 'Add-MpPreference -ExclusionProcess link.exe' - # Install Qbs and Qt - ./scripts/install-qt.sh -d ${QT_INSTALL_DIR} --version ${QT_VERSION} --toolchain win64_msvc2017_64 qtbase qtdeclarative qttools qtscript - ./scripts/install-qt.sh -d ${QT_INSTALL_DIR} --version ${QTCREATOR_VERSION} qtcreator |