-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
executable file
·59 lines (50 loc) · 1.69 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
os: Visual Studio 2017
cache: c:\users\appveyor\clcache
environment:
BOOST_ROOT: C:\Libraries\boost_1_67_0
BOOST_LIBRARYDIR: C:\Libraries\boost_1_67_0\lib64-msvc-14
init:
- set PATH=c:\Python37;c:\Python37\Scripts;%PATH%
- pip install clcache
before_build:
- clcache -s
build_script:
- md build
- cd build
- cmake -G "Visual Studio 15 2017 Win64" ..
- MSBuild TurtleCoin.sln /p:CLToolExe=clcache.exe /p:CLToolPath=c:\Python37\Scripts\ /p:Configuration=Release /m
- src\Release\cryptotest.exe
after_build:
- clcache -s
- if not defined APPVEYOR_REPO_TAG_NAME (set APPVEYOR_REPO_TAG_NAME=%APPVEYOR_REPO_COMMIT%)
- cd src\Release
- mkdir turtlecoin-%APPVEYOR_REPO_TAG_NAME%
- copy *.exe turtlecoin-%APPVEYOR_REPO_TAG_NAME%
- copy ..\..\..\LICENSE turtlecoin-%APPVEYOR_REPO_TAG_NAME%
- 7z a turtlecoin-%APPVEYOR_REPO_TAG_NAME%-windows.zip turtlecoin-%APPVEYOR_REPO_TAG_NAME%
- copy turtlecoin-%APPVEYOR_REPO_TAG_NAME%-windows.zip ..\..\..\
artifacts:
- path: turtlecoin-$(APPVEYOR_REPO_TAG_NAME)-windows.zip
name: TurtleCoinRelease
deploy:
- provider: GitHub
auth_token:
secure: KFrN1rc9FJN3BEoX99whHEuK5iPHHLmDcZ1Ac7tgT9oR6AxyjL0B+XMQu4wqo+fK
artifact: TurtleCoinRelease
draft: false
prerelease: false
on:
appveyor_repo_name: turtlecoin/turtlecoin
appveyor_repo_tag: true
- provider: S3
access_key_id:
secure: nVmSNpabdw1WcGdTTzxAEjza8j9icu89oyXbC8fZVuM=
secret_access_key:
secure: TpCxPp5npMRclcwHB3dhkd9ZsEgKstS6HOnQ1VR6YObEsaPyl5dr16ZdbsOgjykj
bucket: turtlecoin
region: us-east-2
set_public: true
folder: turtlecoin
artifact: TurtleCoinRelease
on:
appveyor_repo_name: turtlecoin/turtlecoin