From bc8781d13007bf41ff6afc2e42ac53a7f8bd26b0 Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Wed, 25 Sep 2019 10:43:04 +0200 Subject: [PATCH] Appveyor: update to Windows Toolchain v0.6 (#13016) --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 1081c032e2..6f8c04dc9e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,7 +20,7 @@ install: # if the toolchain wasn't restored from build cache download and install it - ps: >- if (-not (Test-Path C:\PX4)) { - Invoke-WebRequest https://s3-us-west-2.amazonaws.com/px4-tools/PX4+Windows+Cygwin+Toolchain/PX4+Windows+Cygwin+Toolchain+0.5.msi -OutFile C:\Toolchain.msi + Invoke-WebRequest https://s3-us-west-2.amazonaws.com/px4-tools/PX4+Windows+Cygwin+Toolchain/PX4+Windows+Cygwin+Toolchain+0.6.msi -OutFile C:\Toolchain.msi Start-Process -Wait msiexec -ArgumentList '/I C:\Toolchain.msi /quiet /qn /norestart /log C:\install.log' }