Skip to content

Commit

Permalink
Appvoyer CI will use the updated choco packages. (SmingHub#1210)
Browse files Browse the repository at this point in the history
* Move to using the update choco repository.
* Build with SDK 1.5.0 and SDK 2.0.0
  • Loading branch information
slaff authored Jul 29, 2017
1 parent c6df682 commit b1bb005
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,28 @@ environment:
build_compiler: "mingw"
build_bindings: 1
SDK_VERSION: 2.0.0
- build_platform: "x86"
build_compiler: "mingw"
build_bindings: 1
SDK_VERSION: 1.5.0

# cache:
# - src/ # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
install:
- choco sources add -name kireevco -source 'https://www.myget.org/F/kireevco-chocolatey/'
- choco install -y esp8266-udk wget curl
# - C:\MinGW\bin\mingw-get install
- mkdir c:\Espressif\utils\ESP8266
- cp c:\Espressif\utils\memanalyzer.exe c:\Espressif\utils\ESP8266\memanalyzer.exe
- cp c:\Espressif\utils\esptool.exe c:\Espressif\utils\ESP8266\esptool.exe
- choco sources add -name sming -source 'https://www.myget.org/F/sming/'
- ps: if($env:SDK_VERSION -eq '1.5.0') {
choco install esp8266-udk --source https://www.myget.org/F/kireevco-chocolatey/;
mkdir c:\Espressif\utils\ESP8266;
cp c:\Espressif\utils\memanalyzer.exe c:\Espressif\utils\ESP8266\memanalyzer.exe;
cp c:\Espressif\utils\esptool.exe c:\Espressif\utils\ESP8266\esptool.exe;
}
else {
choco install esp8266-udk
}



# Install esptool2
- git clone https://github.com/raburton/esptool2
- cd esptool2
- make
Expand Down

0 comments on commit b1bb005

Please sign in to comment.