forked from musescore/MuseScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
84 lines (68 loc) · 2.2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# clone directory
clone_folder: C:\MuseScore
# set clone depth
clone_depth: 3 # clone entire repository history if not defined
image: Visual Studio 2017
branches:
only:
- master
# build cache to preserve files/folders between builds
cache:
- dependencies.7z
- C:\Qt\Tools\mingw530_32\lib
- C:\Qt\Tools\mingw530_32\i686-w64-mingw32
- C:\Program Files (x86)\Jack
- C:\MuseScore\build.release\thirdparty
- C:\ccache
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform:
- x86
#environment:
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
# Stop Appveyor from "Discovering Tests"
test: off
install:
- IF DEFINED ENCRYPT_SECRET_SSH (
nuget install secure-file -ExcludeVersion &&
secure-file\tools\secure-file -decrypt C:\MuseScore\build\appveyor\resources\osuosl_nighlies_rsa_nopp.enc -secret %ENCRYPT_SECRET_SSH%
)
- IF DEFINED ENCRYPT_SECRET_CERTIFICATE (
nuget install secure-file -ExcludeVersion &&
secure-file\tools\secure-file -decrypt C:\MuseScore\build\appveyor\resources\musescore.p12.enc -secret %ENCRYPT_SECRET_CERTIFICATE%
)
# scripts to run before build
before_build:
- cmd: C:\MuseScore\build\appveyor\before_build.bat
build_script:
- cmd: C:\MuseScore\build\appveyor\build_script.bat
after_build:
- cmd: C:\MuseScore\build\appveyor\after_build.bat
artifacts:
- path: $(ARTIFACT_NAME)
name: musescore-binary
- path: update_win_nightly.xml
name: update_win_nightly.xml
- path: appcast.xml
name: appcast.xml
deploy:
- provider: S3
access_key_id:
secure: k68f3wMKIC5AzrfNMuC4kdPaxzvKdFVkRsietUKqc+E=
secret_access_key:
secure: IbpdpiHzGfMasaSA6uGrskE4xu9wE+HzElW7tIDOUww+ivHj+gN+mPgUHKCcV9Cn
bucket: update.musescore.org
region: us-east-1
set_public: true
artifact: update_win_nightly.xml
# uncomment in stable release
# - provider: S3
# access_key_id:
# secure: k68f3wMKIC5AzrfNMuC4kdPaxzvKdFVkRsietUKqc+E=
# secret_access_key:
# secure: IbpdpiHzGfMasaSA6uGrskE4xu9wE+HzElW7tIDOUww+ivHj+gN+mPgUHKCcV9Cn
# bucket: sparkle.musescore.org
# folder: testing/3/win/
# region: us-east-1
# set_public: true
# artifact: appcast.xml