-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathappveyor.yml
26 lines (22 loc) · 892 Bytes
/
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
version: 0.20150918.{build}
image: Visual Studio 2022
configuration: Debug-CI
platform: Any CPU
shallow_clone: true
clone_folder: c:\IL2CPU
init:
# This option breaks the github link to the build until the build completes.
# - ps: Update-AppveyorBuild -Version "$(Get-Date -Format yyyy.MM.dd).$env:appveyor_build_number"
# This dependency shouldn't exist, but while it exists, we need to clone the Cosmos repo
- cmd: |
git clone https://github.com/CosmosOS/Common.git c:\Common --depth 1
git clone https://github.com/CosmosOS/Cosmos.git c:\Cosmos --depth 1
nuget:
account_feed: false
project_feed: true
disable_publish_on_pr: true
build_script:
- cmd: |
msbuild IL2CPU.sln /t:Restore;Build;Pack /maxcpucount /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
- path: 'artifacts\Debug\nupkg\*.nupkg'