forked from jprjr/turtlecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
executable file
·65 lines (55 loc) · 2.32 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
image:
- Visual Studio 2019
cache:
- c:\users\appveyor\clcache
- c:\local\boost_1_69_0
environment:
BOOST_ROOT: C:\local\boost_1_69_0
BOOST_LIBRARYDIR: C:\local\boost_1_69_0\lib64-msvc-14
init:
- set PATH=c:\Python37;c:\Python37\Scripts;%PATH%
- pip install clcache
before_build:
- clcache -s
install:
- ps: Write-Host "Checking for Boost 1.69.0 x64...";$boostdir = Test-Path $Env:BOOST_ROOT;If ($boostdir -eq $False) {Write-Host "Downloading Boost 1.69.0 x64...";$exePath = "$Env:TEMP\boost_1_69_0-msvc-14.1-64.exe";(New-Object Net.WebClient).DownloadFile('https://bintray.com/boostorg/release/download_file?file_path=1.69.0%2Fbinaries%2Fboost_1_69_0-msvc-14.1-64.exe', $exePath);Write-Host "Installing Boost 1.69.0 x64...";cmd /c start /wait "$exePath" /verysilent;del $exePath};Write-Host "Boost 1.69.0 x64 installed!" -ForegroundColor Green
build_script:
- md build
- cd build
- cmake -G "Visual Studio 16 2019" -A x64 .. -DARCH=default -DOPENSSL_ROOT_DIR=C:\OpenSSL-v111-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