Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appvoyer CI will use the updated choco packages. #1210

Merged
merged 2 commits into from
Jul 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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