-
Notifications
You must be signed in to change notification settings - Fork 8
/
appveyor.yml
39 lines (39 loc) · 1.11 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
version: 1.1.{build}
image: Visual Studio 2022
install:
- cmd: |
cd "C:\Tools\vcpkg"
git pull > NUL
.\bootstrap-vcpkg.bat > NUL
cd %appveyor_build_folder%
skip_commits:
files:
- '**/*.md'
before_build:
- cmd: vcpkg integrate install
- cmd: vcpkg upgrade --no-dry-run
- cmd: vcpkg install spdlog:x86-windows-static spdlog:x64-windows-static detours:x86-windows-static detours:x64-windows-static
- ps: Invoke-WebRequest "https://github.com/nefarius/vpatch/releases/latest/download/vpatch.exe" -OutFile vpatch.exe
- cmd: vpatch.exe --stamp-version "%APPVEYOR_BUILD_VERSION%" --target-file ".\src\%APPVEYOR_PROJECT_NAME%.rc" --resource.file-version --resource.product-version
configuration: Release
platform:
- x86
- x64
build:
project: socksifier.sln
artifacts:
- path: 'bin**\*.dll'
cache:
- c:\tools\vcpkg\installed\
deploy:
release: v$(APPVEYOR_BUILD_VERSION)
description: 'Socksifier DLL'
provider: GitHub
auth_token:
secure: GvOeZH3msooHWqoQj46UsLaojyMsnudmNdfEMUSJJfrIBuLwAYaMeI5FcxKSFVv7
artifact: /.*\.DLL/
draft: false
prerelease: false
on:
branch: master
APPVEYOR_REPO_TAG: true