Skip to content

Commit

Permalink
chore: fix appveyor builds
Browse files Browse the repository at this point in the history
AppVeyor was fialing trying to install some Windows updates...?
Found some magic lines that seem to fix it.
  • Loading branch information
Herschel committed Jun 17, 2018
1 parent d64ec04 commit 9a21387
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ init:
- set AIR_SDK=c:\projects\air

install:
# Chocolatey was failing trying to install some Windows updates..!?
# This fixes it somehow.
- ps: Set-Service wuauserv -StartupType Manual
- cinst -y php
# Appveyor doesn't get submodules by default.
- git submodule update --init --recursive
# Install the haxe chocolatey package (https://chocolatey.org/packages/haxe)
- cinst haxe --version 3.4.4 -y
- cinst haxe --version 3.4.7 -y
# Install NSIS for installer generation.
- cinst nsis --version 3.02 -y
- RefreshEnv
Expand Down

0 comments on commit 9a21387

Please sign in to comment.