-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (19 loc) · 835 Bytes
/
appveyor.yml
File metadata and controls
23 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
build: off
environment:
global:
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\scripts\\appveyor\\run_with_compiler.cmd"
matrix:
- WINDOWS_SDK_VERSION: "v7.0"
PYTHON_HOME: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
install:
- "git submodule update --init --recursive"
- "powershell scripts\\appveyor\\install.ps1"
before_test:
- cmd: SET PATH=%PATH%;%PYTHON_HOME%;%PYTHON_HOME%\Scripts;C:\MinGW\bin
# Clone SmartAnthil Embedded Project (we need "hal_common" interface)
- cmd: git clone https://github.com/smartanthill/smartanthill2_0-embedded.git C:\smartanthill2_0-embedded
- cmd: SET PLATFORMIO_BUILD_FLAGS=-lwsock32 -IC:\\smartanthill2_0-embedded\\firmware\\src\\hal_common
test_script:
- '%WITH_COMPILER% %PYTHON_HOME%\\Scripts\\platformio run --project-dir=server -e native'