-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
43 lines (35 loc) · 849 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
image:
- Ubuntu
- Visual Studio 2015
platform:
- x64
- x86
configuration:
- Release
- Debug
for:
-
matrix:
only:
- image: Ubuntu
platform: x64
configuration: Release
install:
- sudo apt-get update
- sudo apt-get -y install git wget flex bison gperf python python-pip python-setuptools cmake ninja-build ccache libffi-dev libssl-dev
- mkdir ~/esp
- cd ~/esp
- git clone --recursive https://github.com/espressif/esp-idf.git
- cd ~/esp/esp-idf
- ./install.sh
- . $HOME/esp/esp-idf/export.sh
- cd ~/projects/macrothreading
after_build:
- idf.py build
before_build:
- cmake -H. -B_builds -DCMAKE_BUILD_TYPE=%CONFIGURATION%
build_script:
- cmake --build _builds --config %CONFIGURATION%
test_script:
- ps: cd _builds
- ctest -VV -C %CONFIGURATION%