-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
67 lines (66 loc) · 2.37 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
version: '{build}'
os: Windows Server 2012
platform:
- x86
- x64
environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile(
'http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip',
'C:\maven-bin.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: mvn --version
- cmd: java -version
build_script:
- mvn clean package -B -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
test_script:
- mvn clean install --batch-mode -Pqulice
cache:
- C:\maven\
- C:\Users\appveyor\.m2
#
#
#build: off
#environment:
#
# matrix:
# - PLATFORMIO_PROJECT_DIR: "examples/arduino-blink"
# - PLATFORMIO_PROJECT_DIR: "examples/arduino-wifiscan"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-arduino-blink"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-arduino-wifiscan"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-aws-iot"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-ble-adv"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-coap-server"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-exceptions"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-hello-world"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-http-request"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-peripherals-uart"
# - PLATFORMIO_PROJECT_DIR: "examples/espidf-storage-sdcard"
# - PLATFORMIO_PROJECT_DIR: "examples/pumbaa-blink"
# - PLATFORMIO_PROJECT_DIR: "examples/simba-blink"
#
#install:
# - cmd: git submodule update --init --recursive
# - cmd: SET PATH=%PATH%;C:\Python36\Scripts
# - cmd: pip3 install -U https://github.com/platformio/platformio/archive/develop.zip
# - cmd: platformio platform install file://.
#
#test_script:
# - cmd: platformio run -d %PLATFORMIO_PROJECT_DIR%
#
#notifications:
# - provider: Slack
# incoming_webhook:
# secure: E9H0SU0Ju7WLDvgxsV8cs3J62T3nTTX7QkEjsczN0Sto/c9hWkVfhc5gGWUkxhlD975cokHByKGJIdwYwCewqOI+7BrcT8U+nlga4Uau7J8=
# on_build_success: false
# on_build_failure: true
# on_build_status_changed: true