-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.appveyor.yml
More file actions
27 lines (21 loc) · 847 Bytes
/
.appveyor.yml
File metadata and controls
27 lines (21 loc) · 847 Bytes
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
environment:
JAVA_HOME: C:\projects\pro\zulu11.35.15-ca-jdk11.0.5-win_x64
install:
- ps: (new-object net.webclient).DownloadFile('https://cdn.azul.com/zulu/bin/zulu11.35.15-ca-jdk11.0.5-win_x64.zip', 'C:\projects\pro\zulu11.35.15-ca-jdk11.0.5-win_x64.zip')
- ps: Expand-Archive -Path C:\projects\pro\zulu11.35.15-ca-jdk11.0.5-win_x64.zip -DestinationPath C:\projects\pro
- cmd: echo "%JAVA_HOME%"
build_script:
- cmd: build.bat
- ps: Compress-Archive -Path C:\projects\pro\target\pro -DestinationPath C:\projects\pro\pro-windows.zip
test_script:
- cmd: target\pro\bin\pro build test.pro
artifacts:
- path: pro-windows.zip
deploy:
provider: GitHub
description: "pro release"
auth_token:
secure: Axsa6CpU1DegL5GAWEiBm1ot2BfDMsQY0T3tsxmwzyBY+6wBt+Y4G4Tv5MRrsUd+
prerelease: true
on:
appveyor_repo_tag: true