-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
53 lines (40 loc) · 1.19 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
image: Visual Studio 2019
version: build-{build}
environment:
apksign_keystore_pass:
secure: eqbI6nZfLLOhPTrlSfS81gUsWdjueY6kyXIRJRSFFUw=
apksign_keystore_secret:
secure: WgV6cKnoTywiyKb3ZwoApp32DCB79NfIrRPgkAmjtMc=
clone_script:
- cmd: >-
git config --global core.autocrlf false
&& git clone -q --branch=%APPVEYOR_REPO_BRANCH% https://github.com/%APPVEYOR_REPO_NAME%.git %APPVEYOR_BUILD_FOLDER%
&& cd %APPVEYOR_BUILD_FOLDER%
&& git checkout -qf %APPVEYOR_REPO_COMMIT%
&& git submodule update --init --recursive
before_build:
- bash build.sh pre-build
configuration: Release
build:
parallel: true
project: Naive.sln
after_build:
- bash build.sh deploy
- ps: iex ((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/appveyor/secure-file/master/install.ps1'))
- buildapk.bat
test: off
artifacts:
- path: bin/upload/*
deploy:
description: 'Appveyor build'
provider: GitHub
auth_token:
secure: 0f7Tju3g2JTTgZ6/yfzXwD4AmGnmwBqdeuffFJj1X3faN0o1NmgAoOxnK6gnEOux
artifact: /.*/
draft: false
prerelease: false
on:
# branch: master
appveyor_repo_tag: true
# cache:
# - '%USERPROFILE%\.nuget\packages'