[edk2-devel] Running CI on FreeBSD - can't run NuGet.exe directly (need "mono NuGet.exe")

2020-03-06 Thread Rebecca Cran
I tried again to get CI running on FreeBSD, and succeeded with one change. FreeBSD can't run .NET executables directly, so NuGet.exe needed to be a shell script that calls "mono NuGet.ex" where the original NuGet.exe has been renamed NuGet.ex . -- Rebecca Cran -=-=-=-=-=-=-=-=-=-=-=- Group

Re: [edk2-devel] Running CI on FreeBSD - can't run NuGet.exe directly (need "mono NuGet.exe")

2020-03-07 Thread Sean via Groups.Io
Rebecca, If I understand you correctly we already do something like this on linux. You can see the code here: https://github.com/tianocore/edk2-pytool-extensions/blob/master/edk2toolext/environment/extdeptypes/nuget_dependency.py#L31 For better support can we move this conversation over to the p

Re: [edk2-devel] Running CI on FreeBSD - can't run NuGet.exe directly (need "mono NuGet.exe")

2020-03-07 Thread Rebecca Cran
Sean, Thanks, that's exactly what I was looking for! I'll send a pull request to update the code. -- Rebecca Cran On 3/7/2020 2:40 PM, sean.brogan via [] wrote: Rebecca, If I understand you correctly we already do something like this on linux. You can see the code here: https://github.