Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 8990b78

Browse files
committed
Modified 'ARDUINO_SDK_PATH' entirely - Now resides directly under 'C:\'.
1 parent f924b9d commit 8990b78

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ environment:
44
MINGW_PATH: C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin
55
matrix:
66
- ARDUINO_SDK_VERSION: 1.8.2
7-
ARDUINO_SDK_PATH: $pwd\arduino-sdk\arduino-1.8.2
7+
ARDUINO_SDK_PATH: C:\arduino-sdk\arduino-1.8.2
88
- ARDUINO_SDK_VERSION: 1.8.7
9-
ARDUINO_SDK_PATH: $pwd\arduino-sdk\arduino-1.8.7
9+
ARDUINO_SDK_PATH: C:\arduino-sdk\arduino-1.8.7
1010
cache:
1111
- '%ARDUINO_SDK_PATH%'
1212
install:
1313
- ps: cinst unzip
1414
- ps: $sdk_file = "arduino-$env:ARDUINO_SDK_VERSION-windows.zip"
15+
- ps: cd C:\
1516
- ps: |
1617
if ( -Not (Test-Path -Path $env:ARDUINO_SDK_PATH) )
1718
{
@@ -25,6 +26,7 @@ before_build:
2526
build_script:
2627
# Add the MinGW Path to the system PATH temporarily for this session
2728
- ps: $env:Path += ";$env:MINGW_PATH"
29+
- ps: cd $env:APPVEYOR_BUILD_FOLDER
2830
- ps: mkdir build
2931
- ps: cd build
3032
- ps: echo "$env:ARDUINO_SDK_PATH"

0 commit comments

Comments
 (0)