forked from microsoft/Recognizers-Text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
55 lines (40 loc) · 869 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
46
47
48
49
50
51
52
53
54
55
# AppVeyor build configuration for JavaScript project
version: 1.0.{build}
image: Visual Studio 2017
environment:
nodejs_version: "Stable"
PYTHON: "C:\\Python36-x64"
JAVA_HOME: "C:\\Program Files\\Java\\jdk9"
platform: Any CPU
configuration: Release
init:
- tzutil /s "UTC"
# Install Node 8
install:
- ps: Install-Product node $env:nodejs_version
- cmd: SET PATH=%PYTHON%;%PYTHON%\\Scripts;%JAVA_HOME%\bin;%PATH%
# Projects
clone_depth: 1
branches:
only:
- master
- feature/*
build:
parallel: true
build_script:
- cmd: >-
cd .NET\
build.ci.cmd
cd ..\JavaScript\
build.cmd
cd ..\Python\
build.cmd
cd ..\java\
mvn package
# disable automatic tests
test: off
artifacts:
- path: '**\*Microsoft.Recognizers*.nupkg'
name: NuGets
- path: 'Java\libraries\**\recognizers-text*.jar'
name: JARs