-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathappveyor.yml
More file actions
43 lines (42 loc) · 1.02 KB
/
Copy pathappveyor.yml
File metadata and controls
43 lines (42 loc) · 1.02 KB
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
# ------------------------------------------
# CUSTOMIZABLE TEMPLATE REPOSITORY VARIABLES
#
environment:
APP_DIR_NAME: "PS3 Quick Disc Decryptor"
SOLUTION_EXT: "sln"
# ------------------------------------------
version: CI Build {Build}
skip_commits:
files:
- '.github/**/*'
- 'Docs/**/*'
- 'Documents/**/*'
- 'Manual/**/*'
- 'Images/**/*'
- 'Scripts/**/*'
- 'Website/**/*'
- '*.md'
- '*.zip'
- '*.yml'
image: Visual Studio 2026
configuration: Release
install:
- >-
choco install chocolatey-dotnetfx.extension --no-progress -y
- >-
git submodule update --init --recursive
before_build:
- >-
nuget restore "Source\%APP_DIR_NAME%.%SOLUTION_EXT%"
build:
project: Source\%APP_DIR_NAME%.%SOLUTION_EXT%
parallel: true
after_build:
- >-
7z a -r "%APPVEYOR_PROJECT_NAME%_Build_%APPVEYOR_BUILD_NUMBER%.zip" ^
-i!"Source\*\bin\*"
- >-
dotnet nuget locals all --clear
artifacts:
- path: "%APPVEYOR_PROJECT_NAME%_Build_%APPVEYOR_BUILD_NUMBER%.zip"
name: "%APPVEYOR_PROJECT_NAME%"