forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
45 lines (37 loc) · 990 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
44
45
environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
init:
- git config --global core.autocrlf true
install:
- ps: Install-Product node ''
branches:
only:
- master
- release
skip_commits:
files:
- '**/*.md'
- '**/*.txt'
- '**/*.png'
- '**/*.jpg'
- '**/*.gif'
- LICENSE
- docs/**/*
- .templates/**/*
build_script:
- set PATH=C:\google-cloud-sdk\bin;%PATH%
- curl -fsS -o C:\google-cloud-sdk.zip https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.zip
- cd C:\
- 7z x google-cloud-sdk.zip
- google-cloud-sdk/install.bat --usage-reporting false --path-update false --command-completion false
- cd %APPVEYOR_BUILD_FOLDER%
- gcloud -q components install app-engine-java
- gradlew.bat createConfigs testClasses
- gradlew.bat downloadStaticAnalysisTools
- gradlew.bat lint --continue
- npm install
- npm run lint
test_script:
- npm run build
- gradlew.bat appengineStart
- gradlew.bat ciTests