cue: quiet down chocolatey installation

This commit is contained in:
Ralph Lange
2020-06-16 18:31:13 +02:00
parent 1c0f786eeb
commit 5a0acc2228
2 changed files with 2 additions and 2 deletions

View File

@@ -686,7 +686,7 @@ class TestSetupForBuild(unittest.TestCase):
args = Namespace(paths=[])
cue.building_base = True
if ci_os == 'windows':
sp.check_call(['choco', 'install', 'make', 'strawberryperl'])
sp.check_call(['choco', 'install', 'make', 'strawberryperl', '-ry'])
def setUp(self):
if ci_service == 'appveyor':

2
cue.py
View File

@@ -867,7 +867,7 @@ USR_CXXFLAGS += {0}'''.format(os.environ['USR_CXXFLAGS'])
if ci['os'] == 'windows' and ci['choco']:
fold_start('install.choco', 'Installing CHOCO packages')
sp.check_call(['choco', 'install'] + ci['choco'])
sp.check_call(['choco', 'install'] + ci['choco'] + ['-y', '--limitoutput', '--no-progress'])
fold_end('install.choco', 'Installing CHOCO packages')
if ci['os'] == 'linux' and ci['apt']: