hi all
i am not programmer
but i love uo
try to build servuo repack with appveyor,but failed with artifacts
here is log:
Build started
2git clone -q --branch=master https://github.com/ServUO/ServUO.git C:\projects\servuo
3git checkout -qf d9f27dc90c657c8fc6d177d9a1b94aef210a7e5c
4msbuild "C:\projects\servuo\ServUO.sln" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
5Microsoft (R) Build Engine version 14.0.25420.1
6Copyright (C) Microsoft Corporation. All rights reserved.
7
8 Ultima -> C:\projects\servuo\Ultima.dll
9 Server -> C:\projects\servuo\ServUO.exe
10 Scripts -> C:\projects\servuo\Scripts\Output\Scripts.CS.dll
11Discovering tests...OK
12Collecting artifacts...
13No artifacts found matching 'release' path
14Build success


and this is appveyor.yml:
version: 1.0.{build}
build:
verbosity: minimal
artifacts:
- path: release
name: release

so which wrong with parameter of artifacts

tyvm
 
you set artifact path: release on appveyor.yml, so appveyor is trying to find the folder \release but it doesn't exist

probably you should change it to something like path: ServUO.exe or path: Server\ServUO.exe
 
Back