isaacabraham / vsts-fsharp

Azure Devops extension for F#-friendly tools
https://marketplace.visualstudio.com/items?itemName=isaacabraham.fsharp-helpers-extension
Apache License 2.0
13 stars 7 forks source link

Fake 5 runner not finding script if it is not in root folder #21

Closed severisv closed 5 years ago

severisv commented 5 years ago

Agent: Hosted Linux Preview

Task:

  - task: isaacabraham.fsharp-helpers-extension.a2dadf20-1a83-4220-a4ee-b52f6c77f3cf.FAKE5@1
    displayName: 'Run FAKE script'
    inputs:
      FakeVersion: 5.5.0
      FakeScript: scripts/build.fsx

Error:

2018-09-11T07:50:50.0359881Z There was a problem while setting up the environment:
2018-09-11T07:50:50.0572158Z -> FileNotFoundException: Could not find file '/home/vsts/work/1/s/build.fsx'.
matthid commented 5 years ago

Thanks for reporting. Can you try using the advanced options and setting the full command line?

matthid commented 5 years ago

Also can you attach the complete verbose (Setting "System.Debug" to true) output? It will help me fix this without the need to reproduce myself ...

severisv commented 5 years ago

Ok, so I tried different variations:

Normal step with reference to scripts/build.fsx (not working):

Verbose Log ``` 2018-09-11T10:06:51.7084408Z ##[debug]Evaluating condition for step: 'Execute the scripts/build.fsx FAKE 5 script' 2018-09-11T10:06:51.7121139Z ##[debug]Evaluating: succeeded() 2018-09-11T10:06:51.7156433Z ##[debug]Evaluating succeeded: 2018-09-11T10:06:51.7200186Z ##[debug]=> True 2018-09-11T10:06:51.7237626Z ##[debug]Result: True 2018-09-11T10:06:51.7265086Z ##[section]Starting: Execute the scripts/build.fsx FAKE 5 script 2018-09-11T10:06:51.7402785Z ============================================================================== 2018-09-11T10:06:51.7420500Z Task : FAKE 5 Runner 2018-09-11T10:06:51.7438369Z Description : Runs a FAKE 5 build script. 2018-09-11T10:06:51.7456614Z Version : 1.0.2 2018-09-11T10:06:51.7474655Z Author : Matthias Dittrich 2018-09-11T10:06:51.7493009Z Help : This task downloads and caches the FAKE runner and executes the FAKE 5 build script specified. 2018-09-11T10:06:51.7511345Z ============================================================================== 2018-09-11T10:06:53.8529291Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:06:53.8561200Z ##[debug]loading inputs and endpoints 2018-09-11T10:06:53.8587951Z ##[debug]loading INPUT_FAKEVERSION 2018-09-11T10:06:53.8617272Z ##[debug]loading INPUT_FAKESCRIPT 2018-09-11T10:06:53.8644399Z ##[debug]loading INPUT_WORKINGDIRECTORY 2018-09-11T10:06:53.8674792Z ##[debug]loading INPUT_PREVENTSECRETS 2018-09-11T10:06:53.8704060Z ##[debug]loading INPUT_FAILONSTDERROR 2018-09-11T10:06:53.8731039Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION 2018-09-11T10:06:53.8757573Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION 2018-09-11T10:06:53.8784948Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN 2018-09-11T10:06:53.8822184Z ##[debug]loaded 8 2018-09-11T10:06:53.8850603Z ##[debug]Agent.ProxyUrl=undefined 2018-09-11T10:06:53.8877200Z ##[debug]Agent.CAInfo=undefined 2018-09-11T10:06:53.8903875Z ##[debug]Agent.ClientCert=undefined 2018-09-11T10:06:53.8932869Z ##[debug]Agent.SkipCertValidation=undefined 2018-09-11T10:06:53.8963000Z ##[debug]Agent.ProxyUrl=undefined 2018-09-11T10:06:53.8990050Z ##[debug]check path : /home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-task-tool-lib/lib.json 2018-09-11T10:06:53.9019510Z ##[debug]adding resource file: /home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-task-tool-lib/lib.json 2018-09-11T10:06:53.9046940Z ##[debug]system.culture=en-US 2018-09-11T10:06:53.9064777Z setup paket credential manager 2018-09-11T10:06:53.9093671Z ##[debug]set NUGET_CREDENTIALPROVIDERS_PATH=/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:06:53.9144734Z ##[debug]Processed: ##vso[task.setvariable variable=NUGET_CREDENTIALPROVIDERS_PATH;issecret=false;]/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:06:53.9163566Z SYSTEMVSSCONNECTION exists true 2018-09-11T10:06:53.9190476Z ##[debug]SYSTEMVSSCONNECTION exists true 2018-09-11T10:06:53.9222851Z ##[debug]set PAKET_VSS_NUGET_ACCESSTOKEN=*** 2018-09-11T10:06:53.9269650Z ##[debug]Processed: ##vso[task.setvariable variable=PAKET_VSS_NUGET_ACCESSTOKEN;issecret=false;]*** 2018-09-11T10:06:53.9296871Z ##[debug]FakeScript=/home/vsts/work/1/s/scripts/build.fsx 2018-09-11T10:06:53.9324408Z ##[debug]WorkingDirectory=/home/vsts/work/1/s 2018-09-11T10:06:53.9351079Z ##[debug]ScriptArguments=null 2018-09-11T10:06:53.9377830Z ##[debug]FakeArguments=null 2018-09-11T10:06:53.9406082Z ##[debug]FakeVersion=5.6.1 2018-09-11T10:06:53.9435962Z ##[debug]PreventSecrets=false 2018-09-11T10:06:53.9462999Z ##[debug]FailOnStdError=false 2018-09-11T10:06:53.9489823Z ##[debug]which 'dotnet' 2018-09-11T10:06:53.9520257Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:06:53.9550526Z ##[debug]isExplicit: 5.6.1 2018-09-11T10:06:53.9577591Z ##[debug]explicit? true 2018-09-11T10:06:53.9604255Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:06:53.9632457Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:06:53.9659302Z ##[debug]checking cache: /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:06:53.9687301Z ##[debug]not found 2018-09-11T10:06:54.8468985Z ##[debug]retrieved status code '200' from page '1' 2018-09-11T10:06:54.8497065Z ##[debug] 2018-09-11T10:06:54.8523934Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:06:54.8550488Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:06:54.8577442Z ##[debug]testing directory '/home/vsts/work/_temp' 2018-09-11T10:06:54.8595722Z Downloading: https://github.com/fsharp/FAKE/releases/download/5.6.1/fake-dotnetcore-portable.zip 2018-09-11T10:06:54.8623469Z ##[debug]destination /home/vsts/work/_temp/ee5ae78d-8915-4147-9b4c-02879646a3e3 2018-09-11T10:06:54.8650048Z ##[debug]downloading 2018-09-11T10:06:55.6783680Z ##[debug]creating stream 2018-09-11T10:06:59.5113314Z ##[debug]download complete 2018-09-11T10:06:59.5132715Z Extracting archive 2018-09-11T10:06:59.5161175Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:06:59.5188047Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:06:59.5216221Z ##[debug]testing directory '/home/vsts/work/_temp/871e46ca-3280-4a69-bd5d-4a5acfc6bb4b' 2018-09-11T10:06:59.5244288Z ##[debug]testing directory '/home/vsts/work/_temp' 2018-09-11T10:06:59.5274168Z ##[debug]mkdir '/home/vsts/work/_temp/871e46ca-3280-4a69-bd5d-4a5acfc6bb4b' 2018-09-11T10:06:59.5301790Z ##[debug]which 'unzip' 2018-09-11T10:06:59.5329215Z ##[debug]found: '/usr/bin/unzip' 2018-09-11T10:06:59.5356260Z ##[debug]which 'unzip' 2018-09-11T10:06:59.5383186Z ##[debug]found: '/usr/bin/unzip' 2018-09-11T10:06:59.5413024Z ##[debug]/usr/bin/unzip arg: /home/vsts/work/_temp/ee5ae78d-8915-4147-9b4c-02879646a3e3 2018-09-11T10:06:59.5439970Z ##[debug]exec tool: /usr/bin/unzip 2018-09-11T10:06:59.5469171Z ##[debug]arguments: 2018-09-11T10:06:59.5496400Z ##[debug] /home/vsts/work/_temp/ee5ae78d-8915-4147-9b4c-02879646a3e3 2018-09-11T10:06:59.5517802Z [command]/usr/bin/unzip /home/vsts/work/_temp/ee5ae78d-8915-4147-9b4c-02879646a3e3 2018-09-11T10:06:59.5537379Z Archive: /home/vsts/work/_temp/ee5ae78d-8915-4147-9b4c-02879646a3e3 2018-09-11T10:06:59.5587449Z inflating: Chessie.dll 2018-09-11T10:06:59.5624134Z inflating: Fake.Core.CommandLineParsing.dll 2018-09-11T10:06:59.5650448Z inflating: Fake.Core.CommandLineParsing.pdb 2018-09-11T10:06:59.5669942Z inflating: Fake.Core.CommandLineParsing.xml 2018-09-11T10:06:59.5701922Z inflating: Fake.Core.Context.dll 2018-09-11T10:06:59.5719590Z inflating: Fake.Core.Context.pdb 2018-09-11T10:06:59.5738131Z inflating: Fake.Core.Context.xml 2018-09-11T10:06:59.5756896Z inflating: fake.deps.json 2018-09-11T10:06:59.5775699Z inflating: fake.dll 2018-09-11T10:06:59.5793895Z inflating: fake.pdb 2018-09-11T10:06:59.5812145Z inflating: Fake.Runtime.dll 2018-09-11T10:06:59.5829653Z inflating: Fake.Runtime.pdb 2018-09-11T10:06:59.5848113Z inflating: Fake.Runtime.xml 2018-09-11T10:06:59.5865981Z inflating: fake.runtimeconfig.json 2018-09-11T10:06:59.5883915Z inflating: fake.xml 2018-09-11T10:06:59.5902278Z inflating: FParsec.dll 2018-09-11T10:06:59.5919887Z inflating: FParsecCS.dll 2018-09-11T10:06:59.7176928Z inflating: FSharp.Compiler.Service.dll 2018-09-11T10:06:59.7433667Z inflating: FSharp.Core.dll 2018-09-11T10:06:59.7451920Z inflating: Microsoft.DotNet.PlatformAbstractions.dll 2018-09-11T10:06:59.7472960Z inflating: Mono.Cecil.dll 2018-09-11T10:06:59.7493306Z inflating: Mono.Cecil.Mdb.dll 2018-09-11T10:06:59.7513576Z inflating: Mono.Cecil.Pdb.dll 2018-09-11T10:06:59.7531837Z inflating: Mono.Cecil.Rocks.dll 2018-09-11T10:06:59.7565309Z inflating: Newtonsoft.Json.dll 2018-09-11T10:06:59.7937302Z inflating: Paket.Core.dll 2018-09-11T10:06:59.7961052Z inflating: System.Net.Http.WinHttpHandler.dll 2018-09-11T10:06:59.7986646Z inflating: System.Runtime.CompilerServices.Unsafe.dll 2018-09-11T10:06:59.8011695Z inflating: System.Security.Cryptography.ProtectedData.dll 2018-09-11T10:06:59.8047818Z inflating: cs/FSharp.Core.resources.dll 2018-09-11T10:06:59.8070342Z inflating: de/FSharp.Core.resources.dll 2018-09-11T10:06:59.8088362Z inflating: en/FSharp.Core.resources.dll 2018-09-11T10:06:59.8106533Z inflating: es/FSharp.Core.resources.dll 2018-09-11T10:06:59.8124612Z inflating: fr/FSharp.Core.resources.dll 2018-09-11T10:06:59.8142418Z inflating: it/FSharp.Core.resources.dll 2018-09-11T10:06:59.8160064Z inflating: ja/FSharp.Core.resources.dll 2018-09-11T10:06:59.8178111Z inflating: ko/FSharp.Core.resources.dll 2018-09-11T10:06:59.8195850Z inflating: pl/FSharp.Core.resources.dll 2018-09-11T10:06:59.8214410Z inflating: pt-BR/FSharp.Core.resources.dll 2018-09-11T10:06:59.8232218Z inflating: ru/FSharp.Core.resources.dll 2018-09-11T10:06:59.8249943Z inflating: tr/FSharp.Core.resources.dll 2018-09-11T10:06:59.8267928Z inflating: zh-Hans/FSharp.Core.resources.dll 2018-09-11T10:06:59.8286383Z inflating: zh-Hant/FSharp.Core.resources.dll 2018-09-11T10:06:59.8304473Z inflating: runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll 2018-09-11T10:06:59.8323317Z inflating: runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll 2018-09-11T10:06:59.8350049Z ##[debug]rc:0 2018-09-11T10:06:59.8376720Z ##[debug]success:true 2018-09-11T10:06:59.8399411Z Caching tool: fake 5.6.1 x64 2018-09-11T10:06:59.8426598Z ##[debug]source dir: /home/vsts/work/_temp/871e46ca-3280-4a69-bd5d-4a5acfc6bb4b 2018-09-11T10:06:59.8460842Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:06:59.8487537Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:06:59.8517241Z ##[debug]destination /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:06:59.8549896Z ##[debug]rm -rf /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:06:59.8584594Z ##[debug]rm -rf /opt/hostedtoolcache/fake/5.6.1/x64.complete 2018-09-11T10:06:59.8625472Z ##[debug]testing directory '/opt/hostedtoolcache/fake/5.6.1/x64' 2018-09-11T10:06:59.8657071Z ##[debug]testing directory '/opt/hostedtoolcache/fake/5.6.1' 2018-09-11T10:06:59.8684247Z ##[debug]testing directory '/opt/hostedtoolcache/fake' 2018-09-11T10:06:59.8711042Z ##[debug]testing directory '/opt/hostedtoolcache' 2018-09-11T10:06:59.8737671Z ##[debug]mkdir '/opt/hostedtoolcache/fake' 2018-09-11T10:06:59.8764769Z ##[debug]mkdir '/opt/hostedtoolcache/fake/5.6.1' 2018-09-11T10:06:59.8791552Z ##[debug]mkdir '/opt/hostedtoolcache/fake/5.6.1/x64' 2018-09-11T10:06:59.8818274Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:06:59.8845227Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:06:59.8871868Z ##[debug]finished caching tool 2018-09-11T10:06:59.8898278Z ##[debug]system.jobName=__default 2018-09-11T10:06:59.8924965Z ##[debug]system.culture=en-US 2018-09-11T10:06:59.8951630Z ##[debug]agent.name=Hosted Linux Preview 2 2018-09-11T10:06:59.8978300Z ##[debug]system.artifactsdirectory=/home/vsts/work/1/a 2018-09-11T10:06:59.9005170Z ##[debug]build.binariesdirectory=/home/vsts/work/1/b 2018-09-11T10:06:59.9031837Z ##[debug]build.requestedForEmail=severin.sverdvik@novanet.no 2018-09-11T10:06:59.9058357Z ##[debug]build.definitionVersion=10 2018-09-11T10:06:59.9085400Z ##[debug]AZURE_HTTP_USER_AGENT=VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0 2018-09-11T10:06:59.9112279Z ##[debug]system.definitionId=74 2018-09-11T10:06:59.9139005Z ##[debug]MSDEPLOY_HTTP_USER_AGENT=VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0 2018-09-11T10:06:59.9166208Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:06:59.9192690Z ##[debug]build.reason=Manual 2018-09-11T10:06:59.9219200Z ##[debug]agent.homedirectory=/home/vsts/agents/2.140.0 2018-09-11T10:06:59.9245894Z ##[debug]build.repository.clean=false 2018-09-11T10:06:59.9272477Z ##[debug]agent.version=2.140.0 2018-09-11T10:06:59.9299341Z ##[debug]agent.machinename=b5733e53fe01 2018-09-11T10:06:59.9326372Z ##[debug]agent.workfolder=/home/vsts/work 2018-09-11T10:06:59.9353402Z ##[debug]system.taskDefinitionsUri=https://censo.visualstudio.com/ 2018-09-11T10:06:59.9382201Z ##[debug]build.queuedById=f51546a7-fa23-6619-b661-37a2c44678ad 2018-09-11T10:06:59.9411233Z ##[debug]build.sourceVersionAuthor=Severin Sverdvik 2018-09-11T10:06:59.9464451Z ##[debug]agent.RootDirectory=/home/vsts/work 2018-09-11T10:06:59.9494868Z ##[debug]system.collectionId=3813cef8-c181-45e4-959d-9d73ad8b7772 2018-09-11T10:06:59.9525975Z ##[debug]system.timelineId=aa14331a-2d47-4ae6-92ee-077c91dcf6b2 2018-09-11T10:06:59.9553222Z ##[debug]system.definitionName=Atlas-ASP.NET Core-CI 2018-09-11T10:06:59.9580311Z ##[debug]BuildPlatform=any cpu 2018-09-11T10:06:59.9607729Z ##[debug]system.planId=aa14331a-2d47-4ae6-92ee-077c91dcf6b2 2018-09-11T10:06:59.9634678Z ##[debug]build.Repository.name=atlas.sms 2018-09-11T10:06:59.9661994Z ##[debug]agent.jobstatus=Succeeded 2018-09-11T10:06:59.9694086Z ##[debug]build.repository.localpath=/home/vsts/work/1/s 2018-09-11T10:06:59.9722122Z ##[debug]agent.builddirectory=/home/vsts/work/1 2018-09-11T10:06:59.9748741Z ##[debug]build.stagingdirectory=/home/vsts/work/1/a 2018-09-11T10:06:59.9776075Z ##[debug]BuildConfiguration=Release 2018-09-11T10:06:59.9803192Z ##[debug]build.sourceVersion=8b37b55984d24e17c6fc92752857228f26b907f8 2018-09-11T10:06:59.9830216Z ##[debug]build.definitionName=Atlas-ASP.NET Core-CI 2018-09-11T10:06:59.9857171Z ##[debug]system.debug=true 2018-09-11T10:06:59.9884189Z ##[debug]build.artifactstagingdirectory=/home/vsts/work/1/a 2018-09-11T10:06:59.9911086Z ##[debug]system.isScheduled=False 2018-09-11T10:06:59.9940848Z ##[debug]system.taskInstanceName=FAKE5 2018-09-11T10:06:59.9968588Z ##[debug]system.teamProject=Atlas 2018-09-11T10:06:59.9995679Z ##[debug]agent.id=23 2018-09-11T10:07:00.0023800Z ##[debug]system.taskInstanceId=e604e527-4a37-5036-be15-8619641f74fe 2018-09-11T10:07:00.0051360Z ##[debug]build.sourceVersionMessage=Build with fake 2018-09-11T10:07:00.0078271Z ##[debug]system.jobId=df143ba0-1c7a-5b21-02e1-d41a394e29c9 2018-09-11T10:07:00.0105394Z ##[debug]system.teamProjectId=d2e2bbd1-45a8-4e64-b45a-139dd7a8de6f 2018-09-11T10:07:00.0132685Z ##[debug]system=build 2018-09-11T10:07:00.0159036Z ##[debug]agent.jobname=Job 2018-09-11T10:07:00.0186043Z ##[debug]system.TeamFoundationServerUri=https://censo.visualstudio.com/ 2018-09-11T10:07:00.0213017Z ##[debug]agent.acceptteeeula=True 2018-09-11T10:07:00.0239490Z ##[debug]task.displayname=Execute the scripts/build.fsx FAKE 5 script 2018-09-11T10:07:00.0266862Z ##[debug]build.sourceBranchName=fake 2018-09-11T10:07:00.0293847Z ##[debug]system.defaultworkingdirectory=/home/vsts/work/1/s 2018-09-11T10:07:00.0321780Z ##[debug]build.repository.git.submodulecheckout=False 2018-09-11T10:07:00.0348442Z ##[debug]system.workfolder=/home/vsts/work 2018-09-11T10:07:00.0375887Z ##[debug]VSTS_PROCESS_LOOKUP_ID=vsts_0f9cc51a-dde3-48ba-8ea5-282125e56fc9 2018-09-11T10:07:00.0403045Z ##[debug]system.taskDisplayName=Execute the scripts/build.fsx FAKE 5 script 2018-09-11T10:07:00.0430092Z ##[debug]build.repository.provider=TfsGit 2018-09-11T10:07:00.0457011Z ##[debug]build.queuedBy=Severin Sverdvik 2018-09-11T10:07:00.0484453Z ##[debug]build.sourcesdirectory=/home/vsts/work/1/s 2018-09-11T10:07:00.0511484Z ##[debug]build.repository.id=20dfb7d0-417c-49df-b266-77cfef4e9fc6 2018-09-11T10:07:00.0538705Z ##[debug]build.buildUri=vstfs:///Build/Build/1287 2018-09-11T10:07:00.0565704Z ##[debug]build.buildNumber=20180911.10 2018-09-11T10:07:00.0593304Z ##[debug]build.buildId=1287 2018-09-11T10:07:00.0619945Z ##[debug]system.servertype=Hosted 2018-09-11T10:07:00.0646716Z ##[debug]system.phaseDisplayName=Agent job 1 2018-09-11T10:07:00.0673450Z ##[debug]system.phaseName=Phase_1 2018-09-11T10:07:00.0701110Z ##[debug]agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:07:00.0728141Z ##[debug]build.containerId=2294301 2018-09-11T10:07:00.0755134Z ##[debug]build.sourceBranch=refs/heads/fake 2018-09-11T10:07:00.0784310Z ##[debug]build.requestedFor=Severin Sverdvik 2018-09-11T10:07:00.0811654Z ##[debug]system.phaseId=b2f98261-288b-5a19-54b3-e04cec19b3fd 2018-09-11T10:07:00.0838613Z ##[debug]build.requestedForId=f51546a7-fa23-6619-b661-37a2c44678ad 2018-09-11T10:07:00.0866091Z ##[debug]system.jobParallelismTag=Private 2018-09-11T10:07:00.0893567Z ##[debug]system.collectionUri=https://censo.visualstudio.com/ 2018-09-11T10:07:00.0920311Z ##[debug]agent.os=Linux 2018-09-11T10:07:00.0949689Z ##[debug]build.repository.uri=https://censo.visualstudio.com/Atlas/_git/atlas.sms 2018-09-11T10:07:00.0977099Z ##[debug]system.pipelineStartTime=2018-09-11 12:06:27+02:00 2018-09-11T10:07:00.1004786Z ##[debug]system.teamFoundationCollectionUri=https://censo.visualstudio.com/ 2018-09-11T10:07:00.1031720Z ##[debug]system.pullRequest.isFork=False 2018-09-11T10:07:00.1058334Z ##[debug]system.hosttype=build 2018-09-11T10:07:00.1085245Z ##[debug]common.testresultsdirectory=/home/vsts/work/1/TestResults 2018-09-11T10:07:00.1113577Z ##[debug]system.jobDisplayName=Job 2018-09-11T10:07:00.1141188Z ##[debug]NUGET_CREDENTIALPROVIDERS_PATH=/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:07:00.1174147Z ##[debug]PAKET_VSS_NUGET_ACCESSTOKEN=*** 2018-09-11T10:07:00.1235196Z ##[debug]FAKE_VSTS_VAULT_VARIABLES: {"keyFile":"/home/vsts/work/1/s/scripts/.fake/build.fsx/.secret","iv":"mrVqbiM1kEZc41h46sNJlw==","values":[{"secret":false,"value":"__default","name":"system.jobName"},{"secret":false,"value":"en-US","name":"system.culture"},{"secret":false,"value":"Hosted Linux Preview 2","name":"agent.name"},{"secret":false,"value":"/home/vsts/work/1/a","name":"system.artifactsdirectory"},{"secret":false,"value":"/home/vsts/work/1/b","name":"build.binariesdirectory"},{"secret":false,"value":"severin.sverdvik@novanet.no","name":"build.requestedForEmail"},{"secret":false,"value":"10","name":"build.definitionVersion"},{"secret":false,"value":"VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0","name":"AZURE_HTTP_USER_AGENT"},{"secret":false,"value":"74","name":"system.definitionId"},{"secret":false,"value":"VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0","name":"MSDEPLOY_HTTP_USER_AGENT"},{"secret":false,"value":"/home/vsts/work/_temp","name":"agent.TempDirectory"},{"secret":false,"value":"Manual","name":"build.reason"},{"secret":false,"value":"/home/vsts/agents/2.140.0","name":"agent.homedirectory"},{"secret":false,"value":"false","name":"build.repository.clean"},{"secret":false,"value":"2.140.0","name":"agent.version"},{"secret":false,"value":"b5733e53fe01","name":"agent.machinename"},{"secret":false,"value":"/home/vsts/work","name":"agent.workfolder"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.taskDefinitionsUri"},{"secret":false,"value":"f51546a7-fa23-6619-b661-37a2c44678ad","name":"build.queuedById"},{"secret":false,"value":"Severin Sverdvik","name":"build.sourceVersionAuthor"},{"secret":false,"value":"/home/vsts/work","name":"agent.RootDirectory"},{"secret":false,"value":"3813cef8-c181-45e4-959d-9d73ad8b7772","name":"system.collectionId"},{"secret":false,"value":"aa14331a-2d47-4ae6-92ee-077c91dcf6b2","name":"system.timelineId"},{"secret":false,"value":"Atlas-ASP.NET Core-CI","name":"system.definitionName"},{"secret":false,"value":"any cpu","name":"BuildPlatform"},{"secret":false,"value":"aa14331a-2d47-4ae6-92ee-077c91dcf6b2","name":"system.planId"},{"secret":false,"value":"atlas.sms","name":"build.Repository.name"},{"secret":false,"value":"Succeeded","name":"agent.jobstatus"},{"secret":false,"value":"/home/vsts/work/1/s","name":"build.repository.localpath"},{"secret":false,"value":"/home/vsts/work/1","name":"agent.builddirectory"},{"secret":false,"value":"/home/vsts/work/1/a","name":"build.stagingdirectory"},{"secret":false,"value":"Release","name":"BuildConfiguration"},{"secret":false,"value":"8b37b55984d24e17c6fc92752857228f26b907f8","name":"build.sourceVersion"},{"secret":false,"value":"Atlas-ASP.NET Core-CI","name":"build.definitionName"},{"secret":false,"value":"true","name":"system.debug"},{"secret":false,"value":"/home/vsts/work/1/a","name":"build.artifactstagingdirectory"},{"secret":false,"value":"False","name":"system.isScheduled"},{"secret":false,"value":"FAKE5","name":"system.taskInstanceName"},{"secret":false,"value":"Atlas","name":"system.teamProject"},{"secret":false,"value":"23","name":"agent.id"},{"secret":false,"value":"e604e527-4a37-5036-be15-8619641f74fe","name":"system.taskInstanceId"},{"secret":false,"value":"Build with fake","name":"build.sourceVersionMessage"},{"secret":false,"value":"df143ba0-1c7a-5b21-02e1-d41a394e29c9","name":"system.jobId"},{"secret":false,"value":"d2e2bbd1-45a8-4e64-b45a-139dd7a8de6f","name":"system.teamProjectId"},{"secret":false,"value":"build","name":"system"},{"secret":false,"value":"Job","name":"agent.jobname"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.TeamFoundationServerUri"},{"secret":false,"value":"True","name":"agent.acceptteeeula"},{"secret":false,"value":"Execute the scripts/build.fsx FAKE 5 script","name":"task.displayname"},{"secret":false,"value":"fake","name":"build.sourceBranchName"},{"secret":false,"value":"/home/vsts/work/1/s","name":"system.defaultworkingdirectory"},{"secret":false,"value":"False","name":"build.repository.git.submodulecheckout"},{"secret":false,"value":"/home/vsts/work","name":"system.workfolder"},{"secret":false,"value":"vsts_0f9cc51a-dde3-48ba-8ea5-282125e56fc9","name":"VSTS_PROCESS_LOOKUP_ID"},{"secret":false,"value":"Execute the scripts/build.fsx FAKE 5 script","name":"system.taskDisplayName"},{"secret":false,"value":"TfsGit","name":"build.repository.provider"},{"secret":false,"value":"Severin Sverdvik","name":"build.queuedBy"},{"secret":false,"value":"/home/vsts/work/1/s","name":"build.sourcesdirectory"},{"secret":false,"value":"20dfb7d0-417c-49df-b266-77cfef4e9fc6","name":"build.repository.id"},{"secret":false,"value":"vstfs:///Build/Build/1287","name":"build.buildUri"},{"secret":false,"value":"20180911.10","name":"build.buildNumber"},{"secret":false,"value":"1287","name":"build.buildId"},{"secret":false,"value":"Hosted","name":"system.servertype"},{"secret":false,"value":"Agent job 1","name":"system.phaseDisplayName"},{"secret":false,"value":"Phase_1","name":"system.phaseName"},{"secret":false,"value":"/opt/hostedtoolcache","name":"agent.ToolsDirectory"},{"secret":false,"value":"2294301","name":"build.containerId"},{"secret":false,"value":"refs/heads/fake","name":"build.sourceBranch"},{"secret":false,"value":"Severin Sverdvik","name":"build.requestedFor"},{"secret":false,"value":"b2f98261-288b-5a19-54b3-e04cec19b3fd","name":"system.phaseId"},{"secret":false,"value":"f51546a7-fa23-6619-b661-37a2c44678ad","name":"build.requestedForId"},{"secret":false,"value":"Private","name":"system.jobParallelismTag"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.collectionUri"},{"secret":false,"value":"Linux","name":"agent.os"},{"secret":false,"value":"https://censo.visualstudio.com/Atlas/_git/atlas.sms","name":"build.repository.uri"},{"secret":false,"value":"2018-09-11 12:06:27+02:00","name":"system.pipelineStartTime"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.teamFoundationCollectionUri"},{"secret":false,"value":"False","name":"system.pullRequest.isFork"},{"secret":false,"value":"build","name":"system.hosttype"},{"secret":false,"value":"/home/vsts/work/1/TestResults","name":"common.testresultsdirectory"},{"secret":false,"value":"Job","name":"system.jobDisplayName"},{"secret":false,"value":"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider","name":"NUGET_CREDENTIALPROVIDERS_PATH"},{"secret":false,"value":***,"name":"PAKET_VSS_NUGET_ACCESSTOKEN"}]} 2018-09-11T10:07:00.1292900Z ##[debug]which '/usr/bin/dotnet' 2018-09-11T10:07:00.1319566Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:07:00.1346294Z ##[debug]which '/usr/bin/dotnet' 2018-09-11T10:07:00.1373028Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:07:00.1400366Z ##[debug]/usr/bin/dotnet arg: /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll run "build.fsx" 2018-09-11T10:07:00.1428612Z ##[debug]/usr/bin/dotnet arg: /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll run "build.fsx" 2018-09-11T10:07:00.1455650Z ##[debug]exec tool: /usr/bin/dotnet 2018-09-11T10:07:00.1482460Z ##[debug]exec tool: /usr/bin/dotnet 2018-09-11T10:07:00.1508780Z ##[debug]arguments: 2018-09-11T10:07:00.1535390Z ##[debug]arguments: 2018-09-11T10:07:00.1562546Z ##[debug] /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll 2018-09-11T10:07:00.1589240Z ##[debug] /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll 2018-09-11T10:07:00.1616185Z ##[debug] run 2018-09-11T10:07:00.1642679Z ##[debug] run 2018-09-11T10:07:00.1668968Z ##[debug] build.fsx 2018-09-11T10:07:00.1695487Z ##[debug] build.fsx 2018-09-11T10:07:00.1732373Z [command]/usr/bin/dotnet /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll run build.fsx 2018-09-11T10:07:02.0571642Z Performance: 2018-09-11T10:07:02.0655772Z - Cli parsing: 523 milliseconds 2018-09-11T10:07:02.0675470Z - Script analyzing: 43 milliseconds 2018-09-11T10:07:02.0693664Z - Runtime: 738 milliseconds 2018-09-11T10:07:02.0714464Z There was a problem while setting up the environment: 2018-09-11T10:07:02.0846458Z -> FileNotFoundException: Could not find file '/home/vsts/work/1/s/build.fsx'. 2018-09-11T10:07:02.2551381Z Hint: If you just upgraded the fake-runner you can try to remove the .fake directory and try again. 2018-09-11T10:07:02.2609562Z ##[debug]rc:1 2018-09-11T10:07:02.2642350Z ##[debug]rc:1 2018-09-11T10:07:02.2669353Z ##[debug]success:false 2018-09-11T10:07:02.2698417Z ##[debug]success:false 2018-09-11T10:07:02.2805222Z ##[error]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:07:02.2844618Z ##[debug]Processed: ##vso[task.issue type=error;]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:07:02.2872828Z ##[debug]task result: Failed 2018-09-11T10:07:02.2908651Z ##[error]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:07:02.2936622Z ##[debug]Processed: ##vso[task.issue type=error;]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:07:02.2987767Z ##[debug]Processed: ##vso[task.complete result=Failed;]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:07:02.4594391Z ##[error]Exit code 1 returned from process: file name '/home/vsts/agents/2.140.0/externals/node/bin/node', arguments '"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/runFake5.js"'. 2018-09-11T10:07:02.4642561Z ##[debug]Microsoft.VisualStudio.Services.Agent.Util.ProcessExitCodeException: Exit code 1 returned from process: file name '/home/vsts/agents/2.140.0/externals/node/bin/node', arguments '"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/runFake5.js"'. at Microsoft.VisualStudio.Services.Agent.Util.ProcessInvoker.d__26.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.ProcessInvokerWrapper.d__12.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.Handlers.DefaultStepHost.d__7.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.Handlers.NodeHandler.d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.TaskRunner.d__24.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.StepsRunner.d__1.MoveNext() 2018-09-11T10:07:02.4688436Z ##[section]Finishing: Execute the scripts/build.fsx FAKE 5 script ```
severisv commented 5 years ago

Running full command line (fake run build.fsx), with working directory set to scripts (not working):

Verbose Log ``` 2018-09-11T10:10:30.3422026Z ##[debug]Evaluating condition for step: 'Execute the build.fsx FAKE 5 script' 2018-09-11T10:10:30.3459524Z ##[debug]Evaluating: succeeded() 2018-09-11T10:10:30.3495174Z ##[debug]Evaluating succeeded: 2018-09-11T10:10:30.3539342Z ##[debug]=> True 2018-09-11T10:10:30.3572209Z ##[debug]Result: True 2018-09-11T10:10:30.3597275Z ##[section]Starting: Execute the build.fsx FAKE 5 script 2018-09-11T10:10:30.3735582Z ============================================================================== 2018-09-11T10:10:30.3754701Z Task : FAKE 5 Runner 2018-09-11T10:10:30.3776324Z Description : Runs a FAKE 5 build script. 2018-09-11T10:10:30.3806581Z Version : 1.0.2 2018-09-11T10:10:30.3827798Z Author : Matthias Dittrich 2018-09-11T10:10:30.3844881Z Help : This task downloads and caches the FAKE runner and executes the FAKE 5 build script specified. 2018-09-11T10:10:30.3862570Z ============================================================================== 2018-09-11T10:10:32.7508950Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:10:32.7536623Z ##[debug]loading inputs and endpoints 2018-09-11T10:10:32.7569147Z ##[debug]loading INPUT_FAKEVERSION 2018-09-11T10:10:32.7600176Z ##[debug]loading INPUT_FAKESCRIPT 2018-09-11T10:10:32.7632510Z ##[debug]loading INPUT_WORKINGDIRECTORY 2018-09-11T10:10:32.7667556Z ##[debug]loading INPUT_PREVENTSECRETS 2018-09-11T10:10:32.7700693Z ##[debug]loading INPUT_FAKEARGUMENTS 2018-09-11T10:10:32.7728632Z ##[debug]loading INPUT_FAILONSTDERROR 2018-09-11T10:10:32.7759231Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION 2018-09-11T10:10:32.7790503Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION 2018-09-11T10:10:32.7818661Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN 2018-09-11T10:10:32.7844888Z ##[debug]loaded 9 2018-09-11T10:10:32.7871283Z ##[debug]Agent.ProxyUrl=undefined 2018-09-11T10:10:32.7899230Z ##[debug]Agent.CAInfo=undefined 2018-09-11T10:10:32.7925783Z ##[debug]Agent.ClientCert=undefined 2018-09-11T10:10:32.7953826Z ##[debug]Agent.SkipCertValidation=undefined 2018-09-11T10:10:32.7979569Z ##[debug]Agent.ProxyUrl=undefined 2018-09-11T10:10:32.8006186Z ##[debug]check path : /home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-task-tool-lib/lib.json 2018-09-11T10:10:32.8037623Z ##[debug]adding resource file: /home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-task-tool-lib/lib.json 2018-09-11T10:10:32.8071895Z ##[debug]system.culture=en-US 2018-09-11T10:10:32.8090959Z setup paket credential manager 2018-09-11T10:10:32.8118980Z ##[debug]set NUGET_CREDENTIALPROVIDERS_PATH=/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:10:32.8172101Z ##[debug]Processed: ##vso[task.setvariable variable=NUGET_CREDENTIALPROVIDERS_PATH;issecret=false;]/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:10:32.8190691Z SYSTEMVSSCONNECTION exists true 2018-09-11T10:10:32.8226316Z ##[debug]SYSTEMVSSCONNECTION exists true 2018-09-11T10:10:32.8260336Z ##[debug]set PAKET_VSS_NUGET_ACCESSTOKEN=*** 2018-09-11T10:10:32.8307880Z ##[debug]Processed: ##vso[task.setvariable variable=PAKET_VSS_NUGET_ACCESSTOKEN;issecret=false;]*** 2018-09-11T10:10:32.8339771Z ##[debug]FakeScript=/home/vsts/work/1/s/build.fsx 2018-09-11T10:10:32.8367712Z ##[debug]WorkingDirectory=/home/vsts/work/1/s/scripts 2018-09-11T10:10:32.8394712Z ##[debug]ScriptArguments=null 2018-09-11T10:10:32.8420999Z ##[debug]FakeArguments=fake run build.fsx 2018-09-11T10:10:32.8447875Z ##[debug]FakeVersion=5.6.1 2018-09-11T10:10:32.8470010Z ##[debug]PreventSecrets=false 2018-09-11T10:10:32.8496921Z ##[debug]FailOnStdError=false 2018-09-11T10:10:32.8523061Z ##[debug]which 'dotnet' 2018-09-11T10:10:32.8550509Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:10:32.8579478Z ##[debug]isExplicit: 5.6.1 2018-09-11T10:10:32.8612899Z ##[debug]explicit? true 2018-09-11T10:10:32.8644937Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:10:32.8679683Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:10:32.8709232Z ##[debug]checking cache: /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:10:32.8742236Z ##[debug]not found 2018-09-11T10:10:33.7803622Z ##[debug]retrieved status code '200' from page '1' 2018-09-11T10:10:33.7843081Z ##[debug] 2018-09-11T10:10:33.7875067Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:10:33.7901670Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:10:33.7928317Z ##[debug]testing directory '/home/vsts/work/_temp' 2018-09-11T10:10:33.7946525Z Downloading: https://github.com/fsharp/FAKE/releases/download/5.6.1/fake-dotnetcore-portable.zip 2018-09-11T10:10:33.7974707Z ##[debug]destination /home/vsts/work/_temp/0c42881b-aa61-440b-b6e2-760ab39d5c25 2018-09-11T10:10:33.8004422Z ##[debug]downloading 2018-09-11T10:10:34.7722359Z ##[debug]creating stream 2018-09-11T10:10:38.8508307Z ##[debug]download complete 2018-09-11T10:10:38.8528376Z Extracting archive 2018-09-11T10:10:38.8556156Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:10:38.8584400Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:10:38.8611926Z ##[debug]testing directory '/home/vsts/work/_temp/95a1ee3b-5207-4793-9fe1-c40d047473aa' 2018-09-11T10:10:38.8640829Z ##[debug]testing directory '/home/vsts/work/_temp' 2018-09-11T10:10:38.8668318Z ##[debug]mkdir '/home/vsts/work/_temp/95a1ee3b-5207-4793-9fe1-c40d047473aa' 2018-09-11T10:10:38.8695576Z ##[debug]which 'unzip' 2018-09-11T10:10:38.8721971Z ##[debug]found: '/usr/bin/unzip' 2018-09-11T10:10:38.8751099Z ##[debug]which 'unzip' 2018-09-11T10:10:38.8780327Z ##[debug]found: '/usr/bin/unzip' 2018-09-11T10:10:38.8807517Z ##[debug]/usr/bin/unzip arg: /home/vsts/work/_temp/0c42881b-aa61-440b-b6e2-760ab39d5c25 2018-09-11T10:10:38.8836513Z ##[debug]exec tool: /usr/bin/unzip 2018-09-11T10:10:38.8865398Z ##[debug]arguments: 2018-09-11T10:10:38.8899658Z ##[debug] /home/vsts/work/_temp/0c42881b-aa61-440b-b6e2-760ab39d5c25 2018-09-11T10:10:38.8923250Z [command]/usr/bin/unzip /home/vsts/work/_temp/0c42881b-aa61-440b-b6e2-760ab39d5c25 2018-09-11T10:10:38.8960701Z Archive: /home/vsts/work/_temp/0c42881b-aa61-440b-b6e2-760ab39d5c25 2018-09-11T10:10:38.9043854Z inflating: Chessie.dll 2018-09-11T10:10:38.9065862Z inflating: Fake.Core.CommandLineParsing.dll 2018-09-11T10:10:38.9085805Z inflating: Fake.Core.CommandLineParsing.pdb 2018-09-11T10:10:38.9106969Z inflating: Fake.Core.CommandLineParsing.xml 2018-09-11T10:10:38.9126719Z inflating: Fake.Core.Context.dll 2018-09-11T10:10:38.9147703Z inflating: Fake.Core.Context.pdb 2018-09-11T10:10:38.9166336Z inflating: Fake.Core.Context.xml 2018-09-11T10:10:38.9185348Z inflating: fake.deps.json 2018-09-11T10:10:38.9204518Z inflating: fake.dll 2018-09-11T10:10:38.9223287Z inflating: fake.pdb 2018-09-11T10:10:38.9241249Z inflating: Fake.Runtime.dll 2018-09-11T10:10:38.9259778Z inflating: Fake.Runtime.pdb 2018-09-11T10:10:38.9301724Z inflating: Fake.Runtime.xml 2018-09-11T10:10:38.9319718Z inflating: fake.runtimeconfig.json 2018-09-11T10:10:38.9338209Z inflating: fake.xml 2018-09-11T10:10:38.9356021Z inflating: FParsec.dll 2018-09-11T10:10:38.9374749Z inflating: FParsecCS.dll 2018-09-11T10:10:39.0644183Z inflating: FSharp.Compiler.Service.dll 2018-09-11T10:10:39.0911146Z inflating: FSharp.Core.dll 2018-09-11T10:10:39.0931740Z inflating: Microsoft.DotNet.PlatformAbstractions.dll 2018-09-11T10:10:39.0957257Z inflating: Mono.Cecil.dll 2018-09-11T10:10:39.0980168Z inflating: Mono.Cecil.Mdb.dll 2018-09-11T10:10:39.0998309Z inflating: Mono.Cecil.Pdb.dll 2018-09-11T10:10:39.1017521Z inflating: Mono.Cecil.Rocks.dll 2018-09-11T10:10:39.1050652Z inflating: Newtonsoft.Json.dll 2018-09-11T10:10:39.1422520Z inflating: Paket.Core.dll 2018-09-11T10:10:39.1444979Z inflating: System.Net.Http.WinHttpHandler.dll 2018-09-11T10:10:39.1477891Z inflating: System.Runtime.CompilerServices.Unsafe.dll 2018-09-11T10:10:39.1503518Z inflating: System.Security.Cryptography.ProtectedData.dll 2018-09-11T10:10:39.1543674Z inflating: cs/FSharp.Core.resources.dll 2018-09-11T10:10:39.1563067Z inflating: de/FSharp.Core.resources.dll 2018-09-11T10:10:39.1582372Z inflating: en/FSharp.Core.resources.dll 2018-09-11T10:10:39.1603819Z inflating: es/FSharp.Core.resources.dll 2018-09-11T10:10:39.1620610Z inflating: fr/FSharp.Core.resources.dll 2018-09-11T10:10:39.1639090Z inflating: it/FSharp.Core.resources.dll 2018-09-11T10:10:39.1657264Z inflating: ja/FSharp.Core.resources.dll 2018-09-11T10:10:39.1674953Z inflating: ko/FSharp.Core.resources.dll 2018-09-11T10:10:39.1694207Z inflating: pl/FSharp.Core.resources.dll 2018-09-11T10:10:39.1713782Z inflating: pt-BR/FSharp.Core.resources.dll 2018-09-11T10:10:39.1732223Z inflating: ru/FSharp.Core.resources.dll 2018-09-11T10:10:39.1750049Z inflating: tr/FSharp.Core.resources.dll 2018-09-11T10:10:39.1769144Z inflating: zh-Hans/FSharp.Core.resources.dll 2018-09-11T10:10:39.1787252Z inflating: zh-Hant/FSharp.Core.resources.dll 2018-09-11T10:10:39.1806596Z inflating: runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll 2018-09-11T10:10:39.1825007Z inflating: runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll 2018-09-11T10:10:39.1855206Z ##[debug]rc:0 2018-09-11T10:10:39.1882565Z ##[debug]success:true 2018-09-11T10:10:39.1900956Z Caching tool: fake 5.6.1 x64 2018-09-11T10:10:39.1931103Z ##[debug]source dir: /home/vsts/work/_temp/95a1ee3b-5207-4793-9fe1-c40d047473aa 2018-09-11T10:10:39.1961137Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:10:39.1988373Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:10:39.2016482Z ##[debug]destination /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:10:39.2045574Z ##[debug]rm -rf /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:10:39.2072542Z ##[debug]rm -rf /opt/hostedtoolcache/fake/5.6.1/x64.complete 2018-09-11T10:10:39.2110245Z ##[debug]testing directory '/opt/hostedtoolcache/fake/5.6.1/x64' 2018-09-11T10:10:39.2138793Z ##[debug]testing directory '/opt/hostedtoolcache/fake/5.6.1' 2018-09-11T10:10:39.2166196Z ##[debug]testing directory '/opt/hostedtoolcache/fake' 2018-09-11T10:10:39.2192824Z ##[debug]testing directory '/opt/hostedtoolcache' 2018-09-11T10:10:39.2221100Z ##[debug]mkdir '/opt/hostedtoolcache/fake' 2018-09-11T10:10:39.2249084Z ##[debug]mkdir '/opt/hostedtoolcache/fake/5.6.1' 2018-09-11T10:10:39.2277162Z ##[debug]mkdir '/opt/hostedtoolcache/fake/5.6.1/x64' 2018-09-11T10:10:40.0865269Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:10:40.0891277Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:10:40.0917480Z ##[debug]finished caching tool 2018-09-11T10:10:40.0943198Z ##[debug]system.jobName=__default 2018-09-11T10:10:40.0970082Z ##[debug]system.culture=en-US 2018-09-11T10:10:40.0994973Z ##[debug]agent.name=Hosted Linux Preview 2 2018-09-11T10:10:40.1020809Z ##[debug]system.artifactsdirectory=/home/vsts/work/1/a 2018-09-11T10:10:40.1047991Z ##[debug]build.binariesdirectory=/home/vsts/work/1/b 2018-09-11T10:10:40.1072292Z ##[debug]build.requestedForEmail=severin.sverdvik@novanet.no 2018-09-11T10:10:40.1098082Z ##[debug]build.definitionVersion=12 2018-09-11T10:10:40.1129994Z ##[debug]AZURE_HTTP_USER_AGENT=VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0 2018-09-11T10:10:40.1159471Z ##[debug]system.definitionId=74 2018-09-11T10:10:40.1186562Z ##[debug]MSDEPLOY_HTTP_USER_AGENT=VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0 2018-09-11T10:10:40.1229971Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:10:40.1257256Z ##[debug]build.reason=Manual 2018-09-11T10:10:40.1283992Z ##[debug]agent.homedirectory=/home/vsts/agents/2.140.0 2018-09-11T10:10:40.1313394Z ##[debug]build.repository.clean=false 2018-09-11T10:10:40.1339481Z ##[debug]agent.version=2.140.0 2018-09-11T10:10:40.1364455Z ##[debug]agent.machinename=0a2140a01f61 2018-09-11T10:10:40.1388333Z ##[debug]agent.workfolder=/home/vsts/work 2018-09-11T10:10:40.1413779Z ##[debug]system.taskDefinitionsUri=https://censo.visualstudio.com/ 2018-09-11T10:10:40.1438766Z ##[debug]build.queuedById=f51546a7-fa23-6619-b661-37a2c44678ad 2018-09-11T10:10:40.1473927Z ##[debug]build.sourceVersionAuthor=Severin Sverdvik 2018-09-11T10:10:40.1499503Z ##[debug]agent.RootDirectory=/home/vsts/work 2018-09-11T10:10:40.1524696Z ##[debug]system.collectionId=3813cef8-c181-45e4-959d-9d73ad8b7772 2018-09-11T10:10:40.1549702Z ##[debug]system.timelineId=67ff4100-8a27-4d3c-8364-65205b5720a7 2018-09-11T10:10:40.1577164Z ##[debug]system.definitionName=Atlas-ASP.NET Core-CI 2018-09-11T10:10:40.1603749Z ##[debug]BuildPlatform=any cpu 2018-09-11T10:10:40.1628588Z ##[debug]system.planId=67ff4100-8a27-4d3c-8364-65205b5720a7 2018-09-11T10:10:40.1654891Z ##[debug]build.Repository.name=atlas.sms 2018-09-11T10:10:40.1682444Z ##[debug]agent.jobstatus=Succeeded 2018-09-11T10:10:40.1708493Z ##[debug]build.repository.localpath=/home/vsts/work/1/s 2018-09-11T10:10:40.1734354Z ##[debug]agent.builddirectory=/home/vsts/work/1 2018-09-11T10:10:40.1757710Z ##[debug]build.stagingdirectory=/home/vsts/work/1/a 2018-09-11T10:10:40.1780575Z ##[debug]BuildConfiguration=Release 2018-09-11T10:10:40.1802451Z ##[debug]build.sourceVersion=8b37b55984d24e17c6fc92752857228f26b907f8 2018-09-11T10:10:40.1829893Z ##[debug]build.definitionName=Atlas-ASP.NET Core-CI 2018-09-11T10:10:40.1856391Z ##[debug]system.debug=true 2018-09-11T10:10:40.1880520Z ##[debug]build.artifactstagingdirectory=/home/vsts/work/1/a 2018-09-11T10:10:40.1906694Z ##[debug]system.isScheduled=False 2018-09-11T10:10:40.1938421Z ##[debug]system.taskInstanceName=FAKE5 2018-09-11T10:10:40.1965590Z ##[debug]system.teamProject=Atlas 2018-09-11T10:10:40.1991161Z ##[debug]agent.id=23 2018-09-11T10:10:40.2016230Z ##[debug]system.taskInstanceId=e604e527-4a37-5036-be15-8619641f74fe 2018-09-11T10:10:40.2040480Z ##[debug]build.sourceVersionMessage=Build with fake 2018-09-11T10:10:40.2066754Z ##[debug]system.jobId=df143ba0-1c7a-5b21-02e1-d41a394e29c9 2018-09-11T10:10:40.2092375Z ##[debug]system.teamProjectId=d2e2bbd1-45a8-4e64-b45a-139dd7a8de6f 2018-09-11T10:10:40.2115069Z ##[debug]system=build 2018-09-11T10:10:40.2139033Z ##[debug]agent.jobname=Job 2018-09-11T10:10:40.2167018Z ##[debug]system.TeamFoundationServerUri=https://censo.visualstudio.com/ 2018-09-11T10:10:40.2194309Z ##[debug]agent.acceptteeeula=True 2018-09-11T10:10:40.2224609Z ##[debug]task.displayname=Execute the build.fsx FAKE 5 script 2018-09-11T10:10:40.2256344Z ##[debug]build.sourceBranchName=fake 2018-09-11T10:10:40.2284408Z ##[debug]system.defaultworkingdirectory=/home/vsts/work/1/s 2018-09-11T10:10:40.2313560Z ##[debug]build.repository.git.submodulecheckout=False 2018-09-11T10:10:40.2341132Z ##[debug]system.workfolder=/home/vsts/work 2018-09-11T10:10:40.2367602Z ##[debug]VSTS_PROCESS_LOOKUP_ID=vsts_6e24ff82-64c2-487a-ae69-3c7beadd7153 2018-09-11T10:10:40.2393845Z ##[debug]system.taskDisplayName=Execute the build.fsx FAKE 5 script 2018-09-11T10:10:40.2419193Z ##[debug]build.repository.provider=TfsGit 2018-09-11T10:10:40.2445952Z ##[debug]build.queuedBy=Severin Sverdvik 2018-09-11T10:10:40.2470806Z ##[debug]build.sourcesdirectory=/home/vsts/work/1/s 2018-09-11T10:10:40.2497046Z ##[debug]build.repository.id=20dfb7d0-417c-49df-b266-77cfef4e9fc6 2018-09-11T10:10:40.2523177Z ##[debug]build.buildUri=vstfs:///Build/Build/1289 2018-09-11T10:10:40.2546295Z ##[debug]build.buildNumber=20180911.12 2018-09-11T10:10:40.2573126Z ##[debug]build.buildId=1289 2018-09-11T10:10:40.2597825Z ##[debug]system.servertype=Hosted 2018-09-11T10:10:40.2625925Z ##[debug]system.phaseDisplayName=Agent job 1 2018-09-11T10:10:40.2656395Z ##[debug]system.phaseName=Phase_1 2018-09-11T10:10:40.2682418Z ##[debug]agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:10:40.2709502Z ##[debug]build.containerId=2294327 2018-09-11T10:10:40.2735067Z ##[debug]build.sourceBranch=refs/heads/fake 2018-09-11T10:10:40.2760066Z ##[debug]build.requestedFor=Severin Sverdvik 2018-09-11T10:10:40.2787209Z ##[debug]system.phaseId=b2f98261-288b-5a19-54b3-e04cec19b3fd 2018-09-11T10:10:40.2815775Z ##[debug]build.requestedForId=f51546a7-fa23-6619-b661-37a2c44678ad 2018-09-11T10:10:40.2841252Z ##[debug]system.jobParallelismTag=Private 2018-09-11T10:10:40.2868981Z ##[debug]system.collectionUri=https://censo.visualstudio.com/ 2018-09-11T10:10:40.2894256Z ##[debug]agent.os=Linux 2018-09-11T10:10:40.2921086Z ##[debug]build.repository.uri=https://censo.visualstudio.com/Atlas/_git/atlas.sms 2018-09-11T10:10:40.2946866Z ##[debug]system.pipelineStartTime=2018-09-11 12:10:05+02:00 2018-09-11T10:10:40.2970102Z ##[debug]system.teamFoundationCollectionUri=https://censo.visualstudio.com/ 2018-09-11T10:10:40.2993872Z ##[debug]system.pullRequest.isFork=False 2018-09-11T10:10:40.3020116Z ##[debug]system.hosttype=build 2018-09-11T10:10:40.3045498Z ##[debug]common.testresultsdirectory=/home/vsts/work/1/TestResults 2018-09-11T10:10:40.3070847Z ##[debug]system.jobDisplayName=Job 2018-09-11T10:10:40.3096171Z ##[debug]NUGET_CREDENTIALPROVIDERS_PATH=/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:10:40.3129845Z ##[debug]PAKET_VSS_NUGET_ACCESSTOKEN=*** 2018-09-11T10:10:40.3196142Z ##[debug]FAKE_VSTS_VAULT_VARIABLES: {"keyFile":"/home/vsts/work/1/s/.fake/build.fsx/.secret","iv":"eeVC/GzlrKC4lrG/7sCdXA==","values":[{"secret":false,"value":"__default","name":"system.jobName"},{"secret":false,"value":"en-US","name":"system.culture"},{"secret":false,"value":"Hosted Linux Preview 2","name":"agent.name"},{"secret":false,"value":"/home/vsts/work/1/a","name":"system.artifactsdirectory"},{"secret":false,"value":"/home/vsts/work/1/b","name":"build.binariesdirectory"},{"secret":false,"value":"severin.sverdvik@novanet.no","name":"build.requestedForEmail"},{"secret":false,"value":"12","name":"build.definitionVersion"},{"secret":false,"value":"VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0","name":"AZURE_HTTP_USER_AGENT"},{"secret":false,"value":"74","name":"system.definitionId"},{"secret":false,"value":"VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0","name":"MSDEPLOY_HTTP_USER_AGENT"},{"secret":false,"value":"/home/vsts/work/_temp","name":"agent.TempDirectory"},{"secret":false,"value":"Manual","name":"build.reason"},{"secret":false,"value":"/home/vsts/agents/2.140.0","name":"agent.homedirectory"},{"secret":false,"value":"false","name":"build.repository.clean"},{"secret":false,"value":"2.140.0","name":"agent.version"},{"secret":false,"value":"0a2140a01f61","name":"agent.machinename"},{"secret":false,"value":"/home/vsts/work","name":"agent.workfolder"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.taskDefinitionsUri"},{"secret":false,"value":"f51546a7-fa23-6619-b661-37a2c44678ad","name":"build.queuedById"},{"secret":false,"value":"Severin Sverdvik","name":"build.sourceVersionAuthor"},{"secret":false,"value":"/home/vsts/work","name":"agent.RootDirectory"},{"secret":false,"value":"3813cef8-c181-45e4-959d-9d73ad8b7772","name":"system.collectionId"},{"secret":false,"value":"67ff4100-8a27-4d3c-8364-65205b5720a7","name":"system.timelineId"},{"secret":false,"value":"Atlas-ASP.NET Core-CI","name":"system.definitionName"},{"secret":false,"value":"any cpu","name":"BuildPlatform"},{"secret":false,"value":"67ff4100-8a27-4d3c-8364-65205b5720a7","name":"system.planId"},{"secret":false,"value":"atlas.sms","name":"build.Repository.name"},{"secret":false,"value":"Succeeded","name":"agent.jobstatus"},{"secret":false,"value":"/home/vsts/work/1/s","name":"build.repository.localpath"},{"secret":false,"value":"/home/vsts/work/1","name":"agent.builddirectory"},{"secret":false,"value":"/home/vsts/work/1/a","name":"build.stagingdirectory"},{"secret":false,"value":"Release","name":"BuildConfiguration"},{"secret":false,"value":"8b37b55984d24e17c6fc92752857228f26b907f8","name":"build.sourceVersion"},{"secret":false,"value":"Atlas-ASP.NET Core-CI","name":"build.definitionName"},{"secret":false,"value":"true","name":"system.debug"},{"secret":false,"value":"/home/vsts/work/1/a","name":"build.artifactstagingdirectory"},{"secret":false,"value":"False","name":"system.isScheduled"},{"secret":false,"value":"FAKE5","name":"system.taskInstanceName"},{"secret":false,"value":"Atlas","name":"system.teamProject"},{"secret":false,"value":"23","name":"agent.id"},{"secret":false,"value":"e604e527-4a37-5036-be15-8619641f74fe","name":"system.taskInstanceId"},{"secret":false,"value":"Build with fake","name":"build.sourceVersionMessage"},{"secret":false,"value":"df143ba0-1c7a-5b21-02e1-d41a394e29c9","name":"system.jobId"},{"secret":false,"value":"d2e2bbd1-45a8-4e64-b45a-139dd7a8de6f","name":"system.teamProjectId"},{"secret":false,"value":"build","name":"system"},{"secret":false,"value":"Job","name":"agent.jobname"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.TeamFoundationServerUri"},{"secret":false,"value":"True","name":"agent.acceptteeeula"},{"secret":false,"value":"Execute the build.fsx FAKE 5 script","name":"task.displayname"},{"secret":false,"value":"fake","name":"build.sourceBranchName"},{"secret":false,"value":"/home/vsts/work/1/s","name":"system.defaultworkingdirectory"},{"secret":false,"value":"False","name":"build.repository.git.submodulecheckout"},{"secret":false,"value":"/home/vsts/work","name":"system.workfolder"},{"secret":false,"value":"vsts_6e24ff82-64c2-487a-ae69-3c7beadd7153","name":"VSTS_PROCESS_LOOKUP_ID"},{"secret":false,"value":"Execute the build.fsx FAKE 5 script","name":"system.taskDisplayName"},{"secret":false,"value":"TfsGit","name":"build.repository.provider"},{"secret":false,"value":"Severin Sverdvik","name":"build.queuedBy"},{"secret":false,"value":"/home/vsts/work/1/s","name":"build.sourcesdirectory"},{"secret":false,"value":"20dfb7d0-417c-49df-b266-77cfef4e9fc6","name":"build.repository.id"},{"secret":false,"value":"vstfs:///Build/Build/1289","name":"build.buildUri"},{"secret":false,"value":"20180911.12","name":"build.buildNumber"},{"secret":false,"value":"1289","name":"build.buildId"},{"secret":false,"value":"Hosted","name":"system.servertype"},{"secret":false,"value":"Agent job 1","name":"system.phaseDisplayName"},{"secret":false,"value":"Phase_1","name":"system.phaseName"},{"secret":false,"value":"/opt/hostedtoolcache","name":"agent.ToolsDirectory"},{"secret":false,"value":"2294327","name":"build.containerId"},{"secret":false,"value":"refs/heads/fake","name":"build.sourceBranch"},{"secret":false,"value":"Severin Sverdvik","name":"build.requestedFor"},{"secret":false,"value":"b2f98261-288b-5a19-54b3-e04cec19b3fd","name":"system.phaseId"},{"secret":false,"value":"f51546a7-fa23-6619-b661-37a2c44678ad","name":"build.requestedForId"},{"secret":false,"value":"Private","name":"system.jobParallelismTag"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.collectionUri"},{"secret":false,"value":"Linux","name":"agent.os"},{"secret":false,"value":"https://censo.visualstudio.com/Atlas/_git/atlas.sms","name":"build.repository.uri"},{"secret":false,"value":"2018-09-11 12:10:05+02:00","name":"system.pipelineStartTime"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.teamFoundationCollectionUri"},{"secret":false,"value":"False","name":"system.pullRequest.isFork"},{"secret":false,"value":"build","name":"system.hosttype"},{"secret":false,"value":"/home/vsts/work/1/TestResults","name":"common.testresultsdirectory"},{"secret":false,"value":"Job","name":"system.jobDisplayName"},{"secret":false,"value":"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider","name":"NUGET_CREDENTIALPROVIDERS_PATH"},{"secret":false,"value":***,"name":"PAKET_VSS_NUGET_ACCESSTOKEN"}]} 2018-09-11T10:10:40.3262160Z ##[debug]which '/usr/bin/dotnet' 2018-09-11T10:10:40.3292524Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:10:40.3322229Z ##[debug]which '/usr/bin/dotnet' 2018-09-11T10:10:40.3353160Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:10:40.3381639Z ##[debug]/usr/bin/dotnet arg: /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll fake run build.fsx 2018-09-11T10:10:40.3409528Z ##[debug]/usr/bin/dotnet arg: /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll fake run build.fsx 2018-09-11T10:10:40.3442513Z ##[debug]exec tool: /usr/bin/dotnet 2018-09-11T10:10:40.3469815Z ##[debug]exec tool: /usr/bin/dotnet 2018-09-11T10:10:40.3496065Z ##[debug]arguments: 2018-09-11T10:10:40.3520398Z ##[debug]arguments: 2018-09-11T10:10:40.3546239Z ##[debug] /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll 2018-09-11T10:10:40.3573778Z ##[debug] /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll 2018-09-11T10:10:40.3599387Z ##[debug] fake 2018-09-11T10:10:40.3625172Z ##[debug] fake 2018-09-11T10:10:40.3651425Z ##[debug] run 2018-09-11T10:10:40.3677022Z ##[debug] run 2018-09-11T10:10:40.3701906Z ##[debug] build.fsx 2018-09-11T10:10:40.3728075Z ##[debug] build.fsx 2018-09-11T10:10:40.3744371Z [command]/usr/bin/dotnet /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll fake run build.fsx 2018-09-11T10:10:41.4978095Z Error while parsing command line, usage is: 2018-09-11T10:10:41.4992276Z 2018-09-11T10:10:41.5016537Z Usage: 2018-09-11T10:10:41.5034196Z fake.exe [fake_opts] run [run_opts] [] [--] [...] 2018-09-11T10:10:41.5150326Z fake.exe [fake_opts] build [build_opts] [--] [...] 2018-09-11T10:10:41.5168180Z fake.exe --version 2018-09-11T10:10:41.5183030Z fake.exe --help | -h 2018-09-11T10:10:41.5190349Z 2018-09-11T10:10:41.5205580Z Fake Options [fake_opts]: 2018-09-11T10:10:41.5224550Z -v, --verbose [*] Verbose (can be used multiple times) 2018-09-11T10:10:41.5241660Z Is ignored if -s is used. 2018-09-11T10:10:41.5259485Z * -v: Log verbose but only for FAKE 2018-09-11T10:10:41.5276995Z * -vv: Log verbose for Paket as well 2018-09-11T10:10:41.5296233Z -s, --silent Be silent, use this option if you need to pipe your output into another tool or need some additional processing. 2018-09-11T10:10:41.5305758Z 2018-09-11T10:10:41.5323620Z Fake Run Options [run_opts]: 2018-09-11T10:10:41.5341386Z -d, --debug Debug the script. 2018-09-11T10:10:41.5360075Z -n, --nocache Disable fake cache for this run. 2018-09-11T10:10:41.5378661Z -p, --partial-restore 2018-09-11T10:10:41.5395823Z Only restore the required group instead of a full restore, 2018-09-11T10:10:41.5414559Z can be set globally by setting the environment variable FAKE_PARTIAL_RESTORE to true. 2018-09-11T10:10:41.5431411Z --fsiargs [*] Arguments passed to the f# interactive. 2018-09-11T10:10:41.5439963Z 2018-09-11T10:10:41.5458840Z Fake Build Options [build_opts]: 2018-09-11T10:10:41.5476465Z -d, --debug Debug the script. 2018-09-11T10:10:41.5498108Z -n, --nocache Disable fake cache for this run. 2018-09-11T10:10:41.5521552Z -p, --partial-restore 2018-09-11T10:10:41.5539167Z Only restore the required group instead of a full restore, 2018-09-11T10:10:41.5556707Z can be set globally by setting the environment variable FAKE_PARTIAL_RESTORE to true. 2018-09-11T10:10:41.5574993Z --fsiargs [*] Arguments passed to the f# interactive. 2018-09-11T10:10:41.5592052Z -f, --script 2018-09-11T10:10:41.5609530Z The script to execute (defaults to `build.fsx`). 2018-09-11T10:10:41.5627448Z 2018-09-11T10:10:41.6993752Z ##[debug]rc:1 2018-09-11T10:10:41.7022495Z ##[debug]rc:1 2018-09-11T10:10:41.7050348Z ##[debug]success:false 2018-09-11T10:10:41.7076072Z ##[debug]success:false 2018-09-11T10:10:41.7201354Z ##[error]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:10:41.7243887Z ##[debug]Processed: ##vso[task.issue type=error;]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:10:41.7269432Z ##[debug]task result: Failed 2018-09-11T10:10:41.7305202Z ##[error]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:10:41.7331193Z ##[debug]Processed: ##vso[task.issue type=error;]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:10:41.7380109Z ##[debug]Processed: ##vso[task.complete result=Failed;]/usr/bin/dotnet failed with return code: 1 2018-09-11T10:10:41.9401030Z ##[error]Exit code 1 returned from process: file name '/home/vsts/agents/2.140.0/externals/node/bin/node', arguments '"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/runFake5.js"'. 2018-09-11T10:10:41.9454012Z ##[debug]Microsoft.VisualStudio.Services.Agent.Util.ProcessExitCodeException: Exit code 1 returned from process: file name '/home/vsts/agents/2.140.0/externals/node/bin/node', arguments '"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/runFake5.js"'. at Microsoft.VisualStudio.Services.Agent.Util.ProcessInvoker.d__26.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.ProcessInvokerWrapper.d__12.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.Handlers.DefaultStepHost.d__7.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.Handlers.NodeHandler.d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.TaskRunner.d__24.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Services.Agent.Worker.StepsRunner.d__1.MoveNext() 2018-09-11T10:10:41.9497405Z ##[section]Finishing: Execute the build.fsx FAKE 5 script ```
severisv commented 5 years ago

Lastly, I tried a combination of the two, normal task with script path set to build.fsx, working directory set to scripts (working):

Verbose Log ``` 2018-09-11T10:09:44.0323708Z ##[debug]Evaluating condition for step: 'Execute the build.fsx FAKE 5 script' 2018-09-11T10:09:44.0362093Z ##[debug]Evaluating: succeeded() 2018-09-11T10:09:44.0397864Z ##[debug]Evaluating succeeded: 2018-09-11T10:09:44.0434423Z ##[debug]=> True 2018-09-11T10:09:44.0469613Z ##[debug]Result: True 2018-09-11T10:09:44.0494482Z ##[section]Starting: Execute the build.fsx FAKE 5 script 2018-09-11T10:09:44.0646436Z ============================================================================== 2018-09-11T10:09:44.0678400Z Task : FAKE 5 Runner 2018-09-11T10:09:44.0695633Z Description : Runs a FAKE 5 build script. 2018-09-11T10:09:44.0723327Z Version : 1.0.2 2018-09-11T10:09:44.0743976Z Author : Matthias Dittrich 2018-09-11T10:09:44.0761485Z Help : This task downloads and caches the FAKE runner and executes the FAKE 5 build script specified. 2018-09-11T10:09:44.0785058Z ============================================================================== 2018-09-11T10:09:47.4224468Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:09:47.4274029Z ##[debug]loading inputs and endpoints 2018-09-11T10:09:47.4304085Z ##[debug]loading INPUT_FAKEVERSION 2018-09-11T10:09:47.4335789Z ##[debug]loading INPUT_FAKESCRIPT 2018-09-11T10:09:47.4362765Z ##[debug]loading INPUT_WORKINGDIRECTORY 2018-09-11T10:09:47.4387978Z ##[debug]loading INPUT_PREVENTSECRETS 2018-09-11T10:09:47.4413596Z ##[debug]loading INPUT_FAILONSTDERROR 2018-09-11T10:09:47.4443892Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION 2018-09-11T10:09:47.4472030Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION 2018-09-11T10:09:47.4524064Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN 2018-09-11T10:09:47.4604808Z ##[debug]loaded 8 2018-09-11T10:09:47.4644800Z ##[debug]Agent.ProxyUrl=undefined 2018-09-11T10:09:47.4675121Z ##[debug]Agent.CAInfo=undefined 2018-09-11T10:09:47.4792267Z ##[debug]Agent.ClientCert=undefined 2018-09-11T10:09:47.4816412Z ##[debug]Agent.SkipCertValidation=undefined 2018-09-11T10:09:47.5054208Z ##[debug]Agent.ProxyUrl=undefined 2018-09-11T10:09:47.5085066Z ##[debug]check path : /home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-task-tool-lib/lib.json 2018-09-11T10:09:47.5113830Z ##[debug]adding resource file: /home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-task-tool-lib/lib.json 2018-09-11T10:09:47.5143081Z ##[debug]system.culture=en-US 2018-09-11T10:09:47.5222184Z setup paket credential manager 2018-09-11T10:09:47.5275192Z ##[debug]set NUGET_CREDENTIALPROVIDERS_PATH=/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:09:47.5323568Z ##[debug]Processed: ##vso[task.setvariable variable=NUGET_CREDENTIALPROVIDERS_PATH;issecret=false;]/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:09:47.5349107Z SYSTEMVSSCONNECTION exists true 2018-09-11T10:09:47.5378188Z ##[debug]SYSTEMVSSCONNECTION exists true 2018-09-11T10:09:47.5406313Z ##[debug]set PAKET_VSS_NUGET_ACCESSTOKEN=*** 2018-09-11T10:09:47.5449870Z ##[debug]Processed: ##vso[task.setvariable variable=PAKET_VSS_NUGET_ACCESSTOKEN;issecret=false;]*** 2018-09-11T10:09:47.5491071Z ##[debug]FakeScript=/home/vsts/work/1/s/build.fsx 2018-09-11T10:09:47.5541038Z ##[debug]WorkingDirectory=/home/vsts/work/1/s/scripts 2018-09-11T10:09:47.5567924Z ##[debug]ScriptArguments=null 2018-09-11T10:09:47.5592642Z ##[debug]FakeArguments=null 2018-09-11T10:09:47.5619212Z ##[debug]FakeVersion=5.6.1 2018-09-11T10:09:47.5646645Z ##[debug]PreventSecrets=false 2018-09-11T10:09:47.5678201Z ##[debug]FailOnStdError=false 2018-09-11T10:09:47.5722200Z ##[debug]which 'dotnet' 2018-09-11T10:09:47.5763469Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:09:47.5800306Z ##[debug]isExplicit: 5.6.1 2018-09-11T10:09:47.5835087Z ##[debug]explicit? true 2018-09-11T10:09:47.5864994Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:09:47.5892287Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:09:47.5923054Z ##[debug]checking cache: /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:09:47.5953320Z ##[debug]not found 2018-09-11T10:09:48.6573170Z ##[debug]retrieved status code '200' from page '1' 2018-09-11T10:09:48.6610437Z ##[debug] 2018-09-11T10:09:48.6637758Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:09:48.6662499Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:09:48.6688950Z ##[debug]testing directory '/home/vsts/work/_temp' 2018-09-11T10:09:48.6721683Z Downloading: https://github.com/fsharp/FAKE/releases/download/5.6.1/fake-dotnetcore-portable.zip 2018-09-11T10:09:48.6745597Z ##[debug]destination /home/vsts/work/_temp/5e1e1963-997b-4e5b-87d7-32b397d81724 2018-09-11T10:09:48.6771279Z ##[debug]downloading 2018-09-11T10:09:49.5149284Z ##[debug]creating stream 2018-09-11T10:09:53.3344292Z ##[debug]download complete 2018-09-11T10:09:53.3363654Z Extracting archive 2018-09-11T10:09:53.3388358Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:09:53.3410824Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:09:53.3439609Z ##[debug]testing directory '/home/vsts/work/_temp/adc90bfa-f06e-453c-b77a-56934c6d9f67' 2018-09-11T10:09:53.3462869Z ##[debug]testing directory '/home/vsts/work/_temp' 2018-09-11T10:09:53.3520281Z ##[debug]mkdir '/home/vsts/work/_temp/adc90bfa-f06e-453c-b77a-56934c6d9f67' 2018-09-11T10:09:53.3542784Z ##[debug]which 'unzip' 2018-09-11T10:09:53.3570173Z ##[debug]found: '/usr/bin/unzip' 2018-09-11T10:09:53.3592621Z ##[debug]which 'unzip' 2018-09-11T10:09:53.3616246Z ##[debug]found: '/usr/bin/unzip' 2018-09-11T10:09:53.3640729Z ##[debug]/usr/bin/unzip arg: /home/vsts/work/_temp/5e1e1963-997b-4e5b-87d7-32b397d81724 2018-09-11T10:09:53.3670374Z ##[debug]exec tool: /usr/bin/unzip 2018-09-11T10:09:53.3692639Z ##[debug]arguments: 2018-09-11T10:09:53.3726757Z ##[debug] /home/vsts/work/_temp/5e1e1963-997b-4e5b-87d7-32b397d81724 2018-09-11T10:09:53.3742710Z [command]/usr/bin/unzip /home/vsts/work/_temp/5e1e1963-997b-4e5b-87d7-32b397d81724 2018-09-11T10:09:54.5124155Z Archive: /home/vsts/work/_temp/5e1e1963-997b-4e5b-87d7-32b397d81724 2018-09-11T10:09:54.5161720Z inflating: Chessie.dll 2018-09-11T10:09:54.5183027Z inflating: Fake.Core.CommandLineParsing.dll 2018-09-11T10:09:54.5199280Z inflating: Fake.Core.CommandLineParsing.pdb 2018-09-11T10:09:54.5213993Z inflating: Fake.Core.CommandLineParsing.xml 2018-09-11T10:09:54.5230986Z inflating: Fake.Core.Context.dll 2018-09-11T10:09:54.5248932Z inflating: Fake.Core.Context.pdb 2018-09-11T10:09:54.5265336Z inflating: Fake.Core.Context.xml 2018-09-11T10:09:54.5281722Z inflating: fake.deps.json 2018-09-11T10:09:54.5298218Z inflating: fake.dll 2018-09-11T10:09:54.5321636Z inflating: fake.pdb 2018-09-11T10:09:54.5341754Z inflating: Fake.Runtime.dll 2018-09-11T10:09:54.5358716Z inflating: Fake.Runtime.pdb 2018-09-11T10:09:54.5375348Z inflating: Fake.Runtime.xml 2018-09-11T10:09:54.5391323Z inflating: fake.runtimeconfig.json 2018-09-11T10:09:54.5407330Z inflating: fake.xml 2018-09-11T10:09:54.5426110Z inflating: FParsec.dll 2018-09-11T10:09:54.5441908Z inflating: FParsecCS.dll 2018-09-11T10:09:54.5458442Z inflating: FSharp.Compiler.Service.dll 2018-09-11T10:09:54.5473118Z inflating: FSharp.Core.dll 2018-09-11T10:09:54.5491940Z inflating: Microsoft.DotNet.PlatformAbstractions.dll 2018-09-11T10:09:54.5510789Z inflating: Mono.Cecil.dll 2018-09-11T10:09:54.5529271Z inflating: Mono.Cecil.Mdb.dll 2018-09-11T10:09:54.5547842Z inflating: Mono.Cecil.Pdb.dll 2018-09-11T10:09:54.5569596Z inflating: Mono.Cecil.Rocks.dll 2018-09-11T10:09:54.5588485Z inflating: Newtonsoft.Json.dll 2018-09-11T10:09:54.5608805Z inflating: Paket.Core.dll 2018-09-11T10:09:54.5657196Z inflating: System.Net.Http.WinHttpHandler.dll 2018-09-11T10:09:54.5678264Z inflating: System.Runtime.CompilerServices.Unsafe.dll 2018-09-11T10:09:54.5698216Z inflating: System.Security.Cryptography.ProtectedData.dll 2018-09-11T10:09:54.5719804Z inflating: cs/FSharp.Core.resources.dll 2018-09-11T10:09:54.5740234Z inflating: de/FSharp.Core.resources.dll 2018-09-11T10:09:54.5756871Z inflating: en/FSharp.Core.resources.dll 2018-09-11T10:09:54.5773771Z inflating: es/FSharp.Core.resources.dll 2018-09-11T10:09:54.5792564Z inflating: fr/FSharp.Core.resources.dll 2018-09-11T10:09:54.5810629Z inflating: it/FSharp.Core.resources.dll 2018-09-11T10:09:54.5831763Z inflating: ja/FSharp.Core.resources.dll 2018-09-11T10:09:54.5849060Z inflating: ko/FSharp.Core.resources.dll 2018-09-11T10:09:54.5867164Z inflating: pl/FSharp.Core.resources.dll 2018-09-11T10:09:54.5884805Z inflating: pt-BR/FSharp.Core.resources.dll 2018-09-11T10:09:54.5901506Z inflating: ru/FSharp.Core.resources.dll 2018-09-11T10:09:54.5919782Z inflating: tr/FSharp.Core.resources.dll 2018-09-11T10:09:54.5938945Z inflating: zh-Hans/FSharp.Core.resources.dll 2018-09-11T10:09:54.5956479Z inflating: zh-Hant/FSharp.Core.resources.dll 2018-09-11T10:09:54.5972508Z inflating: runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll 2018-09-11T10:09:54.5989757Z inflating: runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll 2018-09-11T10:09:54.6013300Z ##[debug]rc:0 2018-09-11T10:09:54.6038056Z ##[debug]success:true 2018-09-11T10:09:54.6053640Z Caching tool: fake 5.6.1 x64 2018-09-11T10:09:54.6080187Z ##[debug]source dir: /home/vsts/work/_temp/adc90bfa-f06e-453c-b77a-56934c6d9f67 2018-09-11T10:09:54.6102525Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:09:54.6126991Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:09:54.6152669Z ##[debug]destination /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:09:54.6179425Z ##[debug]rm -rf /opt/hostedtoolcache/fake/5.6.1/x64 2018-09-11T10:09:54.6203458Z ##[debug]rm -rf /opt/hostedtoolcache/fake/5.6.1/x64.complete 2018-09-11T10:09:54.6229935Z ##[debug]testing directory '/opt/hostedtoolcache/fake/5.6.1/x64' 2018-09-11T10:09:54.6253247Z ##[debug]testing directory '/opt/hostedtoolcache/fake/5.6.1' 2018-09-11T10:09:54.6276714Z ##[debug]testing directory '/opt/hostedtoolcache/fake' 2018-09-11T10:09:54.6302133Z ##[debug]testing directory '/opt/hostedtoolcache' 2018-09-11T10:09:54.6329432Z ##[debug]mkdir '/opt/hostedtoolcache/fake' 2018-09-11T10:09:54.6353938Z ##[debug]mkdir '/opt/hostedtoolcache/fake/5.6.1' 2018-09-11T10:09:54.6374967Z ##[debug]mkdir '/opt/hostedtoolcache/fake/5.6.1/x64' 2018-09-11T10:09:54.6399165Z ##[debug]Agent.Version=2.140.0 2018-09-11T10:09:54.6430288Z ##[debug]Agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:09:54.6458081Z ##[debug]finished caching tool 2018-09-11T10:09:54.6483815Z ##[debug]system.jobName=__default 2018-09-11T10:09:54.6511260Z ##[debug]system.culture=en-US 2018-09-11T10:09:54.6535780Z ##[debug]agent.name=Hosted Agent 2018-09-11T10:09:54.6562689Z ##[debug]system.artifactsdirectory=/home/vsts/work/1/a 2018-09-11T10:09:54.6586918Z ##[debug]build.binariesdirectory=/home/vsts/work/1/b 2018-09-11T10:09:54.6612978Z ##[debug]build.requestedForEmail=severin.sverdvik@novanet.no 2018-09-11T10:09:54.6637340Z ##[debug]build.definitionVersion=11 2018-09-11T10:09:54.6662265Z ##[debug]AZURE_HTTP_USER_AGENT=VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0 2018-09-11T10:09:54.6686199Z ##[debug]system.definitionId=74 2018-09-11T10:09:54.6710242Z ##[debug]MSDEPLOY_HTTP_USER_AGENT=VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0 2018-09-11T10:09:54.6733487Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2018-09-11T10:09:54.6756579Z ##[debug]build.reason=Manual 2018-09-11T10:09:54.6779753Z ##[debug]agent.homedirectory=/home/vsts/agents/2.140.0 2018-09-11T10:09:54.6815059Z ##[debug]build.repository.clean=false 2018-09-11T10:09:54.6864095Z ##[debug]agent.version=2.140.0 2018-09-11T10:09:54.6889982Z ##[debug]agent.machinename=cb1bc844cc9d 2018-09-11T10:09:54.6912481Z ##[debug]agent.workfolder=/home/vsts/work 2018-09-11T10:09:54.6934558Z ##[debug]system.taskDefinitionsUri=https://censo.visualstudio.com/ 2018-09-11T10:09:54.6962143Z ##[debug]build.queuedById=f51546a7-fa23-6619-b661-37a2c44678ad 2018-09-11T10:09:54.6989120Z ##[debug]build.sourceVersionAuthor=Severin Sverdvik 2018-09-11T10:09:54.7012758Z ##[debug]agent.RootDirectory=/home/vsts/work 2018-09-11T10:09:54.7037913Z ##[debug]system.collectionId=3813cef8-c181-45e4-959d-9d73ad8b7772 2018-09-11T10:09:54.7063769Z ##[debug]system.timelineId=13f78bd4-3848-4869-b2d5-42f7a9e21c6f 2018-09-11T10:09:54.7088614Z ##[debug]system.definitionName=Atlas-ASP.NET Core-CI 2018-09-11T10:09:54.7112297Z ##[debug]BuildPlatform=any cpu 2018-09-11T10:09:54.7140902Z ##[debug]system.planId=13f78bd4-3848-4869-b2d5-42f7a9e21c6f 2018-09-11T10:09:54.7165654Z ##[debug]build.Repository.name=atlas.sms 2018-09-11T10:09:54.7193149Z ##[debug]agent.jobstatus=Succeeded 2018-09-11T10:09:54.7220456Z ##[debug]build.repository.localpath=/home/vsts/work/1/s 2018-09-11T10:09:54.7246707Z ##[debug]agent.builddirectory=/home/vsts/work/1 2018-09-11T10:09:54.7269282Z ##[debug]build.stagingdirectory=/home/vsts/work/1/a 2018-09-11T10:09:54.7299592Z ##[debug]BuildConfiguration=Release 2018-09-11T10:09:54.7327937Z ##[debug]build.sourceVersion=8b37b55984d24e17c6fc92752857228f26b907f8 2018-09-11T10:09:54.7351274Z ##[debug]build.definitionName=Atlas-ASP.NET Core-CI 2018-09-11T10:09:54.7374588Z ##[debug]system.debug=true 2018-09-11T10:09:54.7398995Z ##[debug]build.artifactstagingdirectory=/home/vsts/work/1/a 2018-09-11T10:09:54.7423064Z ##[debug]system.isScheduled=False 2018-09-11T10:09:54.7450645Z ##[debug]system.taskInstanceName=FAKE5 2018-09-11T10:09:54.7473288Z ##[debug]system.teamProject=Atlas 2018-09-11T10:09:54.7497370Z ##[debug]agent.id=2 2018-09-11T10:09:54.7520987Z ##[debug]system.taskInstanceId=e604e527-4a37-5036-be15-8619641f74fe 2018-09-11T10:09:54.7544436Z ##[debug]build.sourceVersionMessage=Build with fake 2018-09-11T10:09:54.7569164Z ##[debug]system.jobId=df143ba0-1c7a-5b21-02e1-d41a394e29c9 2018-09-11T10:09:54.7592691Z ##[debug]system.teamProjectId=d2e2bbd1-45a8-4e64-b45a-139dd7a8de6f 2018-09-11T10:09:54.7619462Z ##[debug]system=build 2018-09-11T10:09:54.7652411Z ##[debug]agent.jobname=Job 2018-09-11T10:09:54.7719564Z ##[debug]system.TeamFoundationServerUri=https://censo.visualstudio.com/ 2018-09-11T10:09:54.7742238Z ##[debug]agent.acceptteeeula=True 2018-09-11T10:09:54.7768839Z ##[debug]task.displayname=Execute the build.fsx FAKE 5 script 2018-09-11T10:09:54.7793421Z ##[debug]build.sourceBranchName=fake 2018-09-11T10:09:54.7817835Z ##[debug]system.defaultworkingdirectory=/home/vsts/work/1/s 2018-09-11T10:09:54.7841912Z ##[debug]build.repository.git.submodulecheckout=False 2018-09-11T10:09:54.7866703Z ##[debug]system.workfolder=/home/vsts/work 2018-09-11T10:09:54.7891842Z ##[debug]VSTS_PROCESS_LOOKUP_ID=vsts_630d229e-46ae-47b9-833a-94fe4207ed6f 2018-09-11T10:09:54.7920994Z ##[debug]system.taskDisplayName=Execute the build.fsx FAKE 5 script 2018-09-11T10:09:54.7947561Z ##[debug]build.repository.provider=TfsGit 2018-09-11T10:09:54.7971107Z ##[debug]build.queuedBy=Severin Sverdvik 2018-09-11T10:09:54.7996019Z ##[debug]build.sourcesdirectory=/home/vsts/work/1/s 2018-09-11T10:09:54.8021709Z ##[debug]build.repository.id=20dfb7d0-417c-49df-b266-77cfef4e9fc6 2018-09-11T10:09:54.8045373Z ##[debug]build.buildUri=vstfs:///Build/Build/1288 2018-09-11T10:09:54.8081626Z ##[debug]build.buildNumber=20180911.11 2018-09-11T10:09:54.8104508Z ##[debug]build.buildId=1288 2018-09-11T10:09:54.8129763Z ##[debug]system.servertype=Hosted 2018-09-11T10:09:54.8162023Z ##[debug]system.phaseDisplayName=Agent job 1 2018-09-11T10:09:54.8188529Z ##[debug]system.phaseName=Phase_1 2018-09-11T10:09:54.8213503Z ##[debug]agent.ToolsDirectory=/opt/hostedtoolcache 2018-09-11T10:09:54.8239102Z ##[debug]build.containerId=2294318 2018-09-11T10:09:54.8268004Z ##[debug]build.sourceBranch=refs/heads/fake 2018-09-11T10:09:54.8292043Z ##[debug]build.requestedFor=Severin Sverdvik 2018-09-11T10:09:54.8318607Z ##[debug]system.phaseId=b2f98261-288b-5a19-54b3-e04cec19b3fd 2018-09-11T10:09:54.8344971Z ##[debug]build.requestedForId=f51546a7-fa23-6619-b661-37a2c44678ad 2018-09-11T10:09:54.8371042Z ##[debug]system.jobParallelismTag=Private 2018-09-11T10:09:54.8401200Z ##[debug]system.collectionUri=https://censo.visualstudio.com/ 2018-09-11T10:09:54.8426719Z ##[debug]agent.os=Linux 2018-09-11T10:09:54.8452699Z ##[debug]build.repository.uri=https://censo.visualstudio.com/Atlas/_git/atlas.sms 2018-09-11T10:09:54.8478872Z ##[debug]system.pipelineStartTime=2018-09-11 12:09:02+02:00 2018-09-11T10:09:54.8502275Z ##[debug]system.teamFoundationCollectionUri=https://censo.visualstudio.com/ 2018-09-11T10:09:54.8526726Z ##[debug]system.pullRequest.isFork=False 2018-09-11T10:09:54.8550050Z ##[debug]system.hosttype=build 2018-09-11T10:09:54.8574253Z ##[debug]common.testresultsdirectory=/home/vsts/work/1/TestResults 2018-09-11T10:09:54.8625695Z ##[debug]system.jobDisplayName=Job 2018-09-11T10:09:54.8651078Z ##[debug]NUGET_CREDENTIALPROVIDERS_PATH=/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider 2018-09-11T10:09:54.8681992Z ##[debug]PAKET_VSS_NUGET_ACCESSTOKEN=*** 2018-09-11T10:09:54.8748181Z ##[debug]FAKE_VSTS_VAULT_VARIABLES: {"keyFile":"/home/vsts/work/1/s/.fake/build.fsx/.secret","iv":"uo1Na7LfIo2fu2ve95tPcA==","values":[{"secret":false,"value":"__default","name":"system.jobName"},{"secret":false,"value":"en-US","name":"system.culture"},{"secret":false,"value":"Hosted Agent","name":"agent.name"},{"secret":false,"value":"/home/vsts/work/1/a","name":"system.artifactsdirectory"},{"secret":false,"value":"/home/vsts/work/1/b","name":"build.binariesdirectory"},{"secret":false,"value":"severin.sverdvik@novanet.no","name":"build.requestedForEmail"},{"secret":false,"value":"11","name":"build.definitionVersion"},{"secret":false,"value":"VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0","name":"AZURE_HTTP_USER_AGENT"},{"secret":false,"value":"74","name":"system.definitionId"},{"secret":false,"value":"VSTS_3813cef8-c181-45e4-959d-9d73ad8b7772_build_74_0","name":"MSDEPLOY_HTTP_USER_AGENT"},{"secret":false,"value":"/home/vsts/work/_temp","name":"agent.TempDirectory"},{"secret":false,"value":"Manual","name":"build.reason"},{"secret":false,"value":"/home/vsts/agents/2.140.0","name":"agent.homedirectory"},{"secret":false,"value":"false","name":"build.repository.clean"},{"secret":false,"value":"2.140.0","name":"agent.version"},{"secret":false,"value":"cb1bc844cc9d","name":"agent.machinename"},{"secret":false,"value":"/home/vsts/work","name":"agent.workfolder"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.taskDefinitionsUri"},{"secret":false,"value":"f51546a7-fa23-6619-b661-37a2c44678ad","name":"build.queuedById"},{"secret":false,"value":"Severin Sverdvik","name":"build.sourceVersionAuthor"},{"secret":false,"value":"/home/vsts/work","name":"agent.RootDirectory"},{"secret":false,"value":"3813cef8-c181-45e4-959d-9d73ad8b7772","name":"system.collectionId"},{"secret":false,"value":"13f78bd4-3848-4869-b2d5-42f7a9e21c6f","name":"system.timelineId"},{"secret":false,"value":"Atlas-ASP.NET Core-CI","name":"system.definitionName"},{"secret":false,"value":"any cpu","name":"BuildPlatform"},{"secret":false,"value":"13f78bd4-3848-4869-b2d5-42f7a9e21c6f","name":"system.planId"},{"secret":false,"value":"atlas.sms","name":"build.Repository.name"},{"secret":false,"value":"Succeeded","name":"agent.jobstatus"},{"secret":false,"value":"/home/vsts/work/1/s","name":"build.repository.localpath"},{"secret":false,"value":"/home/vsts/work/1","name":"agent.builddirectory"},{"secret":false,"value":"/home/vsts/work/1/a","name":"build.stagingdirectory"},{"secret":false,"value":"Release","name":"BuildConfiguration"},{"secret":false,"value":"8b37b55984d24e17c6fc92752857228f26b907f8","name":"build.sourceVersion"},{"secret":false,"value":"Atlas-ASP.NET Core-CI","name":"build.definitionName"},{"secret":false,"value":"true","name":"system.debug"},{"secret":false,"value":"/home/vsts/work/1/a","name":"build.artifactstagingdirectory"},{"secret":false,"value":"False","name":"system.isScheduled"},{"secret":false,"value":"FAKE5","name":"system.taskInstanceName"},{"secret":false,"value":"Atlas","name":"system.teamProject"},{"secret":false,"value":"2","name":"agent.id"},{"secret":false,"value":"e604e527-4a37-5036-be15-8619641f74fe","name":"system.taskInstanceId"},{"secret":false,"value":"Build with fake","name":"build.sourceVersionMessage"},{"secret":false,"value":"df143ba0-1c7a-5b21-02e1-d41a394e29c9","name":"system.jobId"},{"secret":false,"value":"d2e2bbd1-45a8-4e64-b45a-139dd7a8de6f","name":"system.teamProjectId"},{"secret":false,"value":"build","name":"system"},{"secret":false,"value":"Job","name":"agent.jobname"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.TeamFoundationServerUri"},{"secret":false,"value":"True","name":"agent.acceptteeeula"},{"secret":false,"value":"Execute the build.fsx FAKE 5 script","name":"task.displayname"},{"secret":false,"value":"fake","name":"build.sourceBranchName"},{"secret":false,"value":"/home/vsts/work/1/s","name":"system.defaultworkingdirectory"},{"secret":false,"value":"False","name":"build.repository.git.submodulecheckout"},{"secret":false,"value":"/home/vsts/work","name":"system.workfolder"},{"secret":false,"value":"vsts_630d229e-46ae-47b9-833a-94fe4207ed6f","name":"VSTS_PROCESS_LOOKUP_ID"},{"secret":false,"value":"Execute the build.fsx FAKE 5 script","name":"system.taskDisplayName"},{"secret":false,"value":"TfsGit","name":"build.repository.provider"},{"secret":false,"value":"Severin Sverdvik","name":"build.queuedBy"},{"secret":false,"value":"/home/vsts/work/1/s","name":"build.sourcesdirectory"},{"secret":false,"value":"20dfb7d0-417c-49df-b266-77cfef4e9fc6","name":"build.repository.id"},{"secret":false,"value":"vstfs:///Build/Build/1288","name":"build.buildUri"},{"secret":false,"value":"20180911.11","name":"build.buildNumber"},{"secret":false,"value":"1288","name":"build.buildId"},{"secret":false,"value":"Hosted","name":"system.servertype"},{"secret":false,"value":"Agent job 1","name":"system.phaseDisplayName"},{"secret":false,"value":"Phase_1","name":"system.phaseName"},{"secret":false,"value":"/opt/hostedtoolcache","name":"agent.ToolsDirectory"},{"secret":false,"value":"2294318","name":"build.containerId"},{"secret":false,"value":"refs/heads/fake","name":"build.sourceBranch"},{"secret":false,"value":"Severin Sverdvik","name":"build.requestedFor"},{"secret":false,"value":"b2f98261-288b-5a19-54b3-e04cec19b3fd","name":"system.phaseId"},{"secret":false,"value":"f51546a7-fa23-6619-b661-37a2c44678ad","name":"build.requestedForId"},{"secret":false,"value":"Private","name":"system.jobParallelismTag"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.collectionUri"},{"secret":false,"value":"Linux","name":"agent.os"},{"secret":false,"value":"https://censo.visualstudio.com/Atlas/_git/atlas.sms","name":"build.repository.uri"},{"secret":false,"value":"2018-09-11 12:09:02+02:00","name":"system.pipelineStartTime"},{"secret":false,"value":"https://censo.visualstudio.com/","name":"system.teamFoundationCollectionUri"},{"secret":false,"value":"False","name":"system.pullRequest.isFork"},{"secret":false,"value":"build","name":"system.hosttype"},{"secret":false,"value":"/home/vsts/work/1/TestResults","name":"common.testresultsdirectory"},{"secret":false,"value":"Job","name":"system.jobDisplayName"},{"secret":false,"value":"/home/vsts/work/_tasks/FAKE5_a2dadf20-1a83-4220-a4ee-b52f6c77f3cf/1.0.2/node_modules/vsts-fsharp-task-common/CredentialProvider","name":"NUGET_CREDENTIALPROVIDERS_PATH"},{"secret":false,"value":***,"name":"PAKET_VSS_NUGET_ACCESSTOKEN"}]} 2018-09-11T10:09:54.8799633Z ##[debug]which '/usr/bin/dotnet' 2018-09-11T10:09:54.8823381Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:09:54.8849052Z ##[debug]which '/usr/bin/dotnet' 2018-09-11T10:09:54.8871457Z ##[debug]found: '/usr/bin/dotnet' 2018-09-11T10:09:54.8895708Z ##[debug]/usr/bin/dotnet arg: /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll run "build.fsx" 2018-09-11T10:09:54.8921086Z ##[debug]/usr/bin/dotnet arg: /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll run "build.fsx" 2018-09-11T10:09:54.8946400Z ##[debug]exec tool: /usr/bin/dotnet 2018-09-11T10:09:54.8997752Z ##[debug]exec tool: /usr/bin/dotnet 2018-09-11T10:09:54.9023359Z ##[debug]arguments: 2018-09-11T10:09:54.9048746Z ##[debug]arguments: 2018-09-11T10:09:54.9073144Z ##[debug] /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll 2018-09-11T10:09:54.9098806Z ##[debug] /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll 2018-09-11T10:09:54.9122727Z ##[debug] run 2018-09-11T10:09:54.9146348Z ##[debug] run 2018-09-11T10:09:54.9170568Z ##[debug] build.fsx 2018-09-11T10:09:54.9193983Z ##[debug] build.fsx 2018-09-11T10:09:54.9210653Z [command]/usr/bin/dotnet /opt/hostedtoolcache/fake/5.6.1/x64/fake.dll run build.fsx 2018-09-11T10:09:57.4092139Z Starting full restore process. 2018-09-11T10:09:57.4888620Z Downloading System.Diagnostics.FileVersionInfo 4.3 2018-09-11T10:09:57.4908349Z Downloading Fake.Core.CommandLineParsing 5.5.1-alpha.403 2018-09-11T10:09:57.4928262Z Downloading FSharp.Core 4.5.2 2018-09-11T10:09:57.5321782Z Downloading System.Reactive.Interfaces 4.1 2018-09-11T10:09:57.5339929Z Downloading System.Runtime.InteropServices 4.3 2018-09-11T10:09:59.5321529Z Download of System.Runtime.InteropServices 4.3 done in 1 second. (10417 kbit/s, 2 MB) 2018-09-11T10:09:59.5869399Z Download of System.Reactive.Interfaces 4.1 done in 2 seconds. (182 kbit/s, 0 MB) 2018-09-11T10:09:59.6089593Z Downloading System.Reactive.Linq 4.1 2018-09-11T10:09:59.6381347Z Downloading System.Runtime.InteropServices.WindowsRuntime 4.3 2018-09-11T10:09:59.6910928Z Download of FSharp.Core 4.5.2 done in 2 seconds. (10294 kbit/s, 2 MB) 2018-09-11T10:09:59.7471510Z Downloading Microsoft.NETCore.Platforms 2.1.1 2018-09-11T10:09:59.8308154Z Download of Fake.Core.CommandLineParsing 5.5.1-alpha.403 done in 2 seconds. (1010 kbit/s, 0 MB) 2018-09-11T10:09:59.8384718Z Downloading Fake.Core.Context 5.5.1-alpha.403 2018-09-11T10:09:59.8981827Z Download of System.Diagnostics.FileVersionInfo 4.3 done in 2 seconds. (428 kbit/s, 0 MB) 2018-09-11T10:09:59.9045705Z Downloading System.Diagnostics.Process 4.3 2018-09-11T10:10:00.1804669Z Download of System.Diagnostics.Process 4.3 done in 275 milliseconds. (15540 kbit/s, 0 MB) 2018-09-11T10:10:00.1985887Z Downloading System.Globalization 4.3 2018-09-11T10:10:00.2080502Z Download of Fake.Core.Context 5.5.1-alpha.403 done in 370 milliseconds. (1096 kbit/s, 0 MB) 2018-09-11T10:10:00.2124246Z Downloading Fake.Core.Environment 5.5.1-alpha.403 2018-09-11T10:10:00.3395469Z Download of Microsoft.NETCore.Platforms 2.1.1 done in 592 milliseconds. (418 kbit/s, 0 MB) 2018-09-11T10:10:00.3420774Z Downloading Microsoft.NETCore.Targets 2.1 2018-09-11T10:10:00.4589487Z Download of System.Globalization 4.3 done in 260 milliseconds. (17832 kbit/s, 0 MB) 2018-09-11T10:10:00.4843392Z Downloading System.IO 4.3 2018-09-11T10:10:00.4961236Z Download of System.Reactive.Linq 4.1 done in 887 milliseconds. (425 kbit/s, 0 MB) 2018-09-11T10:10:00.4989575Z Downloading System.Reactive.PlatformServices 4.1 2018-09-11T10:10:00.5583154Z Download of System.Runtime.InteropServices.WindowsRuntime 4.3 done in 920 milliseconds. (1235 kbit/s, 0 MB) 2018-09-11T10:10:00.5706110Z Downloading System.Security.AccessControl 4.5 2018-09-11T10:10:00.7843161Z Download of System.IO 4.3 done in 299 milliseconds. (18570 kbit/s, 0 MB) 2018-09-11T10:10:00.8182125Z Downloading System.IO.FileSystem 4.3 2018-09-11T10:10:00.8354956Z Download of Microsoft.NETCore.Targets 2.1 done in 493 milliseconds. (283 kbit/s, 0 MB) 2018-09-11T10:10:00.8379702Z Downloading Microsoft.Win32.Primitives 4.3 2018-09-11T10:10:01.1097416Z Download of Fake.Core.Environment 5.5.1-alpha.403 done in 898 milliseconds. (714 kbit/s, 0 MB) 2018-09-11T10:10:01.1162000Z Downloading Fake.Core.FakeVar 5.5.1-alpha.403 2018-09-11T10:10:01.1242918Z Download of Microsoft.Win32.Primitives 4.3 done in 285 milliseconds. (1508 kbit/s, 0 MB) 2018-09-11T10:10:01.1271134Z Download of System.IO.FileSystem 4.3 done in 308 milliseconds. (6876 kbit/s, 0 MB) 2018-09-11T10:10:01.1324480Z Downloading Microsoft.Win32.Registry 4.5 2018-09-11T10:10:01.1398305Z Downloading System.IO.FileSystem.Primitives 4.3 2018-09-11T10:10:01.3731027Z Download of System.IO.FileSystem.Primitives 4.3 done in 231 milliseconds. (2957 kbit/s, 0 MB) 2018-09-11T10:10:01.3808952Z Downloading System.IO.FileSystem.Watcher 4.3 2018-09-11T10:10:01.4001495Z Download of Microsoft.Win32.Registry 4.5 done in 267 milliseconds. (10125 kbit/s, 0 MB) 2018-09-11T10:10:01.4111635Z Downloading NETStandard.Library 2.0.3 2018-09-11T10:10:01.5012972Z Download of System.Reactive.PlatformServices 4.1 done in 1 second. (372 kbit/s, 0 MB) 2018-09-11T10:10:01.5040070Z Downloading System.Reactive.Providers 4.1 2018-09-11T10:10:01.5516666Z Download of System.Security.AccessControl 4.5 done in 981 milliseconds. (4424 kbit/s, 0 MB) 2018-09-11T10:10:01.5916379Z Downloading System.Security.Principal.Windows 4.5 2018-09-11T10:10:01.6233726Z Download of System.IO.FileSystem.Watcher 4.3 done in 243 milliseconds. (6067 kbit/s, 0 MB) 2018-09-11T10:10:01.6347936Z Downloading System.Memory 4.5.1 2018-09-11T10:10:02.0842084Z Download of NETStandard.Library 2.0.3 done in 672 milliseconds. (37339 kbit/s, 2 MB) 2018-09-11T10:10:02.1380809Z Download of Fake.Core.FakeVar 5.5.1-alpha.403 done in 1 second. (248 kbit/s, 0 MB) 2018-09-11T10:10:02.1461749Z Downloading Fake.Core.Globbing 5.0.0-beta021 2018-09-11T10:10:02.1642889Z Downloading Newtonsoft.Json 11.0.2 2018-09-11T10:10:02.3307406Z Download of System.Security.Principal.Windows 4.5 done in 735 milliseconds. (4104 kbit/s, 0 MB) 2018-09-11T10:10:02.3479535Z Downloading System.Text.Encoding 4.3 2018-09-11T10:10:02.3572538Z Download of System.Memory 4.5.1 done in 722 milliseconds. (2066 kbit/s, 0 MB) 2018-09-11T10:10:02.3635637Z Downloading System.Numerics.Vectors 4.5 2018-09-11T10:10:02.3869501Z Download of System.Reactive.Providers 4.1 done in 882 milliseconds. (422 kbit/s, 0 MB) 2018-09-11T10:10:02.3898263Z Downloading System.Reflection 4.3 2018-09-11T10:10:02.4693525Z Download of Newtonsoft.Json 11.0.2 done in 304 milliseconds. (63160 kbit/s, 2 MB) 2018-09-11T10:10:02.5217787Z Downloading runtime.native.System 4.3.1 2018-09-11T10:10:02.6115920Z Download of System.Numerics.Vectors 4.5 done in 247 milliseconds. (11977 kbit/s, 0 MB) 2018-09-11T10:10:02.6262179Z Downloading System.Reactive 4.1 2018-09-11T10:10:02.6746800Z Download of System.Reflection 4.3 done in 283 milliseconds. (19540 kbit/s, 0 MB) 2018-09-11T10:10:02.7089907Z Downloading System.Reflection.Metadata 1.6 2018-09-11T10:10:02.8315044Z Download of System.Text.Encoding 4.3 done in 482 milliseconds. (5272 kbit/s, 0 MB) 2018-09-11T10:10:02.8509073Z Downloading System.Text.Encoding.Extensions 4.3 2018-09-11T10:10:02.9603579Z Download of Fake.Core.Globbing 5.0.0-beta021 done in 814 milliseconds. (627 kbit/s, 0 MB) 2018-09-11T10:10:02.9703142Z Downloading Fake.Core.Process 5.5.1-alpha.403 2018-09-11T10:10:03.0070436Z Download of System.Reactive 4.1 done in 380 milliseconds. (51494 kbit/s, 2 MB) 2018-09-11T10:10:03.0595134Z Downloading System.Reactive.Compatibility 4.1 2018-09-11T10:10:03.0826698Z Download of System.Text.Encoding.Extensions 4.3 done in 231 milliseconds. (8124 kbit/s, 0 MB) 2018-09-11T10:10:03.1015941Z Downloading System.Threading 4.3 2018-09-11T10:10:03.1267604Z Download of runtime.native.System 4.3.1 done in 604 milliseconds. (221 kbit/s, 0 MB) 2018-09-11T10:10:03.1288117Z Downloading System.Buffers 4.5 2018-09-11T10:10:03.3809707Z Download of System.Threading 4.3 done in 279 milliseconds. (20028 kbit/s, 0 MB) 2018-09-11T10:10:03.4088931Z Downloading System.Threading.Overlapped 4.3 2018-09-11T10:10:03.6651669Z Download of System.Reflection.Metadata 1.6 done in 956 milliseconds. (7021 kbit/s, 0 MB) 2018-09-11T10:10:03.6814670Z Downloading System.Reflection.Primitives 4.3 2018-09-11T10:10:03.7357776Z Download of System.Buffers 4.5 done in 606 milliseconds. (1229 kbit/s, 0 MB) 2018-09-11T10:10:03.7401404Z Downloading System.Collections 4.3 2018-09-11T10:10:03.9064078Z Download of Fake.Core.Process 5.5.1-alpha.403 done in 936 milliseconds. (2471 kbit/s, 0 MB) 2018-09-11T10:10:03.9145807Z Downloading Fake.Core.String 5.5.1-alpha.403 2018-09-11T10:10:03.9284222Z Download of System.Reflection.Primitives 4.3 done in 246 milliseconds. (8848 kbit/s, 0 MB) 2018-09-11T10:10:03.9407623Z Download of System.Reactive.Compatibility 4.1 done in 881 milliseconds. (189 kbit/s, 0 MB) 2018-09-11T10:10:03.9426731Z Downloading System.Reactive.Core 4.1 2018-09-11T10:10:03.9463502Z Downloading System.Resources.ResourceManager 4.3 2018-09-11T10:10:04.0188135Z Download of System.Collections 4.3 done in 274 milliseconds. (23369 kbit/s, 0 MB) 2018-09-11T10:10:04.0510167Z Downloading System.Collections.Immutable 1.5 2018-09-11T10:10:04.2757494Z Download of System.Threading.Overlapped 4.3 done in 866 milliseconds. (1460 kbit/s, 0 MB) 2018-09-11T10:10:04.2831890Z Downloading System.Threading.Tasks 4.3 2018-09-11T10:10:04.4728814Z Download of System.Resources.ResourceManager 4.3 done in 526 milliseconds. (1160 kbit/s, 0 MB) 2018-09-11T10:10:04.4838467Z Downloading System.Runtime 4.3 2018-09-11T10:10:04.6540597Z Download of Fake.Core.String 5.5.1-alpha.403 done in 739 milliseconds. (821 kbit/s, 0 MB) 2018-09-11T10:10:04.6599553Z Downloading Fake.Core.Target 5.5.1-alpha.403 2018-09-11T10:10:04.7557527Z Download of System.Collections.Immutable 1.5 done in 704 milliseconds. (8993 kbit/s, 0 MB) 2018-09-11T10:10:04.7726848Z Downloading System.Diagnostics.Debug 4.3 2018-09-11T10:10:04.8466581Z Download of System.Threading.Tasks 4.3 done in 561 milliseconds. (11841 kbit/s, 0 MB) 2018-09-11T10:10:04.8507209Z Download of System.Reactive.Core 4.1 done in 906 milliseconds. (422 kbit/s, 0 MB) 2018-09-11T10:10:04.8916305Z Downloading System.Threading.Tasks.Extensions 4.5.1 2018-09-11T10:10:05.0196752Z Download of System.Diagnostics.Debug 4.3 done in 246 milliseconds. (4558 kbit/s, 0 MB) 2018-09-11T10:10:05.1483301Z Download of System.Runtime 4.3 done in 664 milliseconds. (87399 kbit/s, 6 MB) 2018-09-11T10:10:05.3107719Z Download of Fake.Core.Target 5.5.1-alpha.403 done in 647 milliseconds. (1317 kbit/s, 0 MB) 2018-09-11T10:10:05.3129741Z Downloading Fake.Core.Trace 5.5.1-alpha.403 2018-09-11T10:10:05.3499021Z Downloading System.Runtime.CompilerServices.Unsafe 4.5.1 2018-09-11T10:10:05.4546786Z Download of System.Threading.Tasks.Extensions 4.5.1 done in 563 milliseconds. (1564 kbit/s, 0 MB) 2018-09-11T10:10:05.4625993Z Downloading System.Threading.Thread 4.3 2018-09-11T10:10:05.5676745Z Download of System.Runtime.CompilerServices.Unsafe 4.5.1 done in 217 milliseconds. (3332 kbit/s, 0 MB) 2018-09-11T10:10:05.5724857Z Downloading System.Runtime.Extensions 4.3 2018-09-11T10:10:05.9736957Z Download of Fake.Core.Trace 5.5.1-alpha.403 done in 660 milliseconds. (2124 kbit/s, 0 MB) 2018-09-11T10:10:05.9791302Z Downloading Fake.DotNet.Cli 5.5.1-alpha.403 2018-09-11T10:10:06.1457511Z Download of System.Runtime.Extensions 4.3 done in 573 milliseconds. (14670 kbit/s, 1 MB) 2018-09-11T10:10:06.1900859Z Downloading System.Runtime.Handles 4.3 2018-09-11T10:10:06.1973663Z Download of System.Threading.Thread 4.3 done in 734 milliseconds. (973 kbit/s, 0 MB) 2018-09-11T10:10:06.2045841Z Downloading System.Threading.ThreadPool 4.3 2018-09-11T10:10:06.7882415Z Download of System.Runtime.Handles 4.3 done in 597 milliseconds. (606 kbit/s, 0 MB) 2018-09-11T10:10:07.0142553Z Download of Fake.DotNet.Cli 5.5.1-alpha.403 done in 1 second. (1497 kbit/s, 0 MB) 2018-09-11T10:10:07.0199464Z Downloading Fake.IO.FileSystem 5.5.1-alpha.403 2018-09-11T10:10:07.2031684Z Download of System.Threading.ThreadPool 4.3 done in 999 milliseconds. (643 kbit/s, 0 MB) 2018-09-11T10:10:07.6848367Z Download of Fake.IO.FileSystem 5.5.1-alpha.403 done in 664 milliseconds. (2590 kbit/s, 0 MB) 2018-09-11T10:10:07.6913147Z Downloading FParsec 1.0.3 2018-09-11T10:10:08.6137484Z Download of FParsec 1.0.3 done in 922 milliseconds. (3620 kbit/s, 0 MB) 2018-09-11T10:10:08.6253256Z Downloading FSharp.Control.Reactive 4.1 2018-09-11T10:10:09.5563941Z Download of FSharp.Control.Reactive 4.1 done in 930 milliseconds. (1639 kbit/s, 0 MB) 2018-09-11T10:10:10.3591411Z Downloading NETStandard.Library 2.0.2 2018-09-11T10:10:10.7471889Z Download of NETStandard.Library 2.0.2 done in 386 milliseconds. (65030 kbit/s, 2 MB) 2018-09-11T10:10:15.9949765Z run Copy-and-update-deploy-scripts 2018-09-11T10:10:16.0072979Z Building project with version: 20180911.11 2018-09-11T10:10:16.0163516Z Shortened DependencyGraph for Target Copy-and-update-deploy-scripts: 2018-09-11T10:10:16.0181023Z <== Copy-and-update-deploy-scripts 2018-09-11T10:10:16.0196852Z <== Publish 2018-09-11T10:10:16.0211758Z <== Test 2018-09-11T10:10:16.0228016Z <== Build 2018-09-11T10:10:16.0243666Z <== Restore-packages 2018-09-11T10:10:16.0259255Z <== Clean 2018-09-11T10:10:16.0266230Z 2018-09-11T10:10:16.0415132Z The running order is: 2018-09-11T10:10:16.0431190Z Group - 1 2018-09-11T10:10:16.0449032Z - Clean 2018-09-11T10:10:16.0463120Z Group - 2 2018-09-11T10:10:16.0481080Z - Restore-packages 2018-09-11T10:10:16.0496214Z Group - 3 2018-09-11T10:10:16.0513057Z - Build 2018-09-11T10:10:16.0529461Z Group - 4 2018-09-11T10:10:16.0543865Z - Test 2018-09-11T10:10:16.0559830Z Group - 5 2018-09-11T10:10:16.0573644Z - Publish 2018-09-11T10:10:16.0589249Z Group - 6 2018-09-11T10:10:16.0603985Z - Copy-and-update-deploy-scripts 2018-09-11T10:10:16.0771714Z Starting target 'Clean' 2018-09-11T10:10:16.0920140Z Finished (Success) 'Clean' in 00:00:00.0090561 2018-09-11T10:10:16.0936365Z Starting target 'Restore-packages' 2018-09-11T10:10:16.0964438Z Starting task 'DotNet:restore': ../src/Sms 2018-09-11T10:10:16.1512200Z /usr/bin/mono --version 2018-09-11T10:10:16.2750015Z /usr/bin/dotnet restore "../src/Sms" 2018-09-11T10:10:19.6424267Z Restoring packages for /home/vsts/work/1/s/src/Sms/Sms.csproj... 2018-09-11T10:10:24.8682757Z Installing runtime.win7-x64.runtime.native.System.Data.SqlClient.sni 4.3.0. 2018-09-11T10:10:24.8953799Z Installing runtime.win7-x86.runtime.native.System.Data.SqlClient.sni 4.3.0. 2018-09-11T10:10:24.8969849Z Installing System.Diagnostics.Contracts 4.0.1. 2018-09-11T10:10:24.8987624Z Installing System.Security.Claims 4.0.1. 2018-09-11T10:10:24.9004884Z Installing System.Security.Principal 4.0.1. 2018-09-11T10:10:24.9020065Z Installing System.Threading.Overlapped 4.0.1. 2018-09-11T10:10:24.9034899Z Installing System.Threading.Thread 4.0.0. 2018-09-11T10:10:24.9052552Z Installing Microsoft.Extensions.Primitives 1.0.1. 2018-09-11T10:10:24.9070676Z Installing System.Memory 4.5.0. 2018-09-11T10:10:24.9086659Z Installing runtime.native.System.Data.SqlClient.sni 4.3.0. 2018-09-11T10:10:24.9102303Z Installing System.IO.Pipes 4.3.0. 2018-09-11T10:10:24.9118004Z Installing System.Data.Common 4.3.0. 2018-09-11T10:10:24.9135433Z Installing Microsoft.Extensions.ObjectPool 1.0.1. 2018-09-11T10:10:24.9151438Z Installing Microsoft.AspNetCore.WebUtilities 1.0.2. 2018-09-11T10:10:24.9166367Z Installing Microsoft.Net.Http.Headers 1.0.2. 2018-09-11T10:10:24.9182841Z Installing Microsoft.AspNetCore.Http.Abstractions 1.0.2. 2018-09-11T10:10:24.9427606Z Installing Serilog.Sinks.Console 3.1.1. 2018-09-11T10:10:24.9466678Z Installing Polly 6.1.0. 2018-09-11T10:10:24.9484902Z Installing Serilog 2.7.1. 2018-09-11T10:10:26.5386710Z Installing Microsoft.AspNetCore.Http.Features 1.0.2. 2018-09-11T10:10:26.5403806Z Installing Microsoft.Extensions.Configuration.Abstractions 1.0.2. 2018-09-11T10:10:26.5432478Z Installing Serilog.Sinks.File 4.0.0. 2018-09-11T10:10:26.5447688Z Installing Serilog.Sinks.Trace 2.1.0. 2018-09-11T10:10:26.5463712Z Installing Twilio 5.16.2. 2018-09-11T10:10:26.5478696Z Installing Serilog.Sinks.ApplicationInsights 2.6.0. 2018-09-11T10:10:26.5496779Z Installing Microsoft.ApplicationInsights.Kubernetes 1.0.0-beta9. 2018-09-11T10:10:26.5527160Z Installing Serilog.Extensions.Hosting 2.0.0. 2018-09-11T10:10:26.5544673Z Installing System.IO.FileSystem.Watcher 4.0.0. 2018-09-11T10:10:26.5560413Z Installing Serilog.Settings.Configuration 2.6.1. 2018-09-11T10:10:26.5577873Z Installing Microsoft.Azure.ServiceBus 3.1.0. 2018-09-11T10:10:26.5594740Z Installing Microsoft.ApplicationInsights.AspNetCore 2.3.0. 2018-09-11T10:10:26.5610624Z Installing System.Diagnostics.TraceSource 4.0.0. 2018-09-11T10:10:26.5628575Z Installing Microsoft.IdentityModel.Logging 1.1.2. 2018-09-11T10:10:26.5645156Z Installing System.IdentityModel.Tokens.Jwt 5.1.2. 2018-09-11T10:10:26.5660405Z Installing Microsoft.IdentityModel.Tokens 5.1.2. 2018-09-11T10:10:26.5678399Z Installing Microsoft.ApplicationInsights 2.5.1. 2018-09-11T10:10:26.5695882Z Installing Newtonsoft.Json 10.0.3. 2018-09-11T10:10:26.5712490Z Installing Microsoft.Extensions.Logging 2.0.0. 2018-09-11T10:10:26.5730864Z Installing Serilog.Extensions.Logging 2.0.0. 2018-09-11T10:10:26.5750406Z Installing Microsoft.Extensions.DependencyInjection.Abstractions 2.1.0. 2018-09-11T10:10:26.5775063Z Installing Microsoft.Extensions.Logging.Abstractions 2.1.0. 2018-09-11T10:10:26.5797499Z Installing Microsoft.Extensions.Hosting.Abstractions 2.1.0. 2018-09-11T10:10:26.5815713Z Installing Microsoft.Extensions.Configuration.Abstractions 1.0.0. 2018-09-11T10:10:26.5832256Z Installing Microsoft.Extensions.DependencyModel 1.0.0. 2018-09-11T10:10:26.5848503Z Installing System.Diagnostics.DiagnosticSource 4.4.1. 2018-09-11T10:10:26.5865299Z Installing System.IdentityModel.Tokens.Jwt 5.2.2. 2018-09-11T10:10:26.5885798Z Installing Microsoft.IdentityModel.Clients.ActiveDirectory 3.17.2. 2018-09-11T10:10:26.5905622Z Installing Microsoft.Azure.Amqp 2.3.0. 2018-09-11T10:10:26.5922200Z Installing Microsoft.Extensions.Logging.Abstractions 1.0.2. 2018-09-11T10:10:26.5937386Z Installing Microsoft.ApplicationInsights 2.6.4. 2018-09-11T10:10:26.5954567Z Installing Microsoft.ApplicationInsights.WindowsServer 2.6.4. 2018-09-11T10:10:26.5969885Z Installing Microsoft.ApplicationInsights.PerfCounterCollector 2.6.4. 2018-09-11T10:10:26.5985954Z Installing Microsoft.Extensions.Configuration.Json 1.0.2. 2018-09-11T10:10:26.6002392Z Installing Microsoft.Extensions.DiagnosticAdapter 1.0.2. 2018-09-11T10:10:26.6017280Z Installing Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel 2.6.4. 2018-09-11T10:10:26.6033236Z Installing Microsoft.AspNetCore.Hosting 1.0.2. 2018-09-11T10:10:26.6047320Z Installing Microsoft.Extensions.FileSystemGlobbing 1.0.1. 2018-09-11T10:10:26.6063155Z Installing Microsoft.ApplicationInsights.DependencyCollector 2.6.4. 2018-09-11T10:10:26.6077446Z Installing Microsoft.Extensions.FileProviders.Abstractions 1.0.1. 2018-09-11T10:10:26.6093139Z Installing System.Collections.Immutable 1.2.0. 2018-09-11T10:10:26.6108207Z Installing System.Net.Requests 4.3.0. 2018-09-11T10:10:26.6123689Z Installing Microsoft.Extensions.DependencyInjection.Abstractions 2.0.0. 2018-09-11T10:10:26.6138094Z Installing Microsoft.Extensions.Logging.Abstractions 2.0.0. 2018-09-11T10:10:26.6158293Z Installing Microsoft.Extensions.FileProviders.Abstractions 2.1.0. 2018-09-11T10:10:26.6175271Z Installing Microsoft.Extensions.Configuration.Abstractions 2.1.0. 2018-09-11T10:10:26.6191506Z Installing Microsoft.Extensions.Primitives 1.0.0. 2018-09-11T10:10:26.6206522Z Installing System.Security.AccessControl 4.3.0. 2018-09-11T10:10:26.6224055Z Installing Microsoft.DotNet.InternalAbstractions 1.0.0. 2018-09-11T10:10:26.6254139Z Installing Microsoft.IdentityModel.Tokens 5.2.2. 2018-09-11T10:10:26.6269153Z Installing System.Runtime.Serialization.Json 4.3.0. 2018-09-11T10:10:26.6286256Z Installing System.Net.WebSockets.Client 4.0.2. 2018-09-11T10:10:26.6303409Z Installing Microsoft.Extensions.Configuration.FileExtensions 1.0.2. 2018-09-11T10:10:26.6323615Z Installing System.ComponentModel 4.0.1. 2018-09-11T10:10:26.6338762Z Installing Microsoft.Extensions.DependencyInjection.Abstractions 1.0.2. 2018-09-11T10:10:26.6355296Z Installing System.Net.WebHeaderCollection 4.3.0. 2018-09-11T10:10:26.6370619Z Installing System.Net.NetworkInformation 4.3.0. 2018-09-11T10:10:26.6385916Z Installing System.IO.FileSystem.AccessControl 4.3.0. 2018-09-11T10:10:26.6402006Z Installing Microsoft.Extensions.Configuration.EnvironmentVariables 1.0.2. 2018-09-11T10:10:26.6417505Z Installing System.Diagnostics.StackTrace 4.0.1. 2018-09-11T10:10:26.6433340Z Installing System.Reflection.Metadata 1.3.0. 2018-09-11T10:10:26.6448351Z Installing Microsoft.Extensions.FileProviders.Physical 1.0.1. 2018-09-11T10:10:26.6465665Z Installing Microsoft.Extensions.Logging 1.0.2. 2018-09-11T10:10:26.6481124Z Installing Microsoft.Extensions.PlatformAbstractions 1.0.0. 2018-09-11T10:10:26.6496278Z Installing Microsoft.AspNetCore.Hosting.Server.Abstractions 1.0.2. 2018-09-11T10:10:26.6512575Z Installing Microsoft.AspNetCore.Hosting.Abstractions 1.0.2. 2018-09-11T10:10:26.6527981Z Installing Microsoft.AspNetCore.Http.Extensions 1.0.2. 2018-09-11T10:10:26.6544396Z Installing Microsoft.AspNetCore.Http 1.0.2. 2018-09-11T10:10:26.6558725Z Installing System.Data.SqlClient 4.3.1. 2018-09-11T10:10:26.6574583Z Installing Microsoft.Extensions.Primitives 2.1.0. 2018-09-11T10:10:26.6591377Z Installing Microsoft.IdentityModel.Logging 5.2.2. 2018-09-11T10:10:26.6606515Z Installing System.Net.WebHeaderCollection 4.0.1. 2018-09-11T10:10:26.6625823Z Installing System.Net.WebSockets 4.0.0. 2018-09-11T10:10:26.6642602Z Installing System.Linq.Expressions 4.1.1. 2018-09-11T10:10:48.8188510Z Generating MSBuild file /home/vsts/work/1/s/src/Sms/obj/Sms.csproj.nuget.g.props. 2018-09-11T10:10:48.8208192Z Generating MSBuild file /home/vsts/work/1/s/src/Sms/obj/Sms.csproj.nuget.g.targets. 2018-09-11T10:10:48.8387916Z Restore completed in 29.23 sec for /home/vsts/work/1/s/src/Sms/Sms.csproj. 2018-09-11T10:10:48.8869383Z Finished (Success) 'DotNet:restore' in 00:00:32.7877050 2018-09-11T10:10:48.8887525Z Finished (Success) 'Restore-packages' in 00:00:32.7906724 2018-09-11T10:10:48.8904469Z Starting target 'Build' 2018-09-11T10:10:48.8918696Z Starting task 'DotNet:build': ../src/Sms 2018-09-11T10:10:48.8935235Z /usr/bin/dotnet build "../src/Sms" --configuration Release 2018-09-11T10:10:49.2117099Z Microsoft (R) Build Engine version 15.8.166+gd4e8d81a88 for .NET Core 2018-09-11T10:10:49.2134625Z Copyright (C) Microsoft Corporation. All rights reserved. 2018-09-11T10:10:49.2144771Z 2018-09-11T10:10:50.1299241Z Restore completed in 46.57 ms for /home/vsts/work/1/s/src/Sms/Sms.csproj. 2018-09-11T10:10:55.5301567Z Sms -> /home/vsts/work/1/s/src/Sms/bin/Release/netcoreapp2.1/censo.Atlas.Sms.dll 2018-09-11T10:10:55.5310343Z 2018-09-11T10:10:55.5328549Z Build succeeded. 2018-09-11T10:10:55.5346373Z 0 Warning(s) 2018-09-11T10:10:55.5362930Z 0 Error(s) 2018-09-11T10:10:55.5370903Z 2018-09-11T10:10:55.5387416Z Time Elapsed 00:00:05.96 2018-09-11T10:10:55.5404540Z Finished (Success) 'DotNet:build' in 00:00:06.4141640 2018-09-11T10:10:55.5421773Z Finished (Success) 'Build' in 00:00:06.4156001 2018-09-11T10:10:55.5439898Z Starting target 'Test' 2018-09-11T10:10:55.5458763Z Starting task 'DotNet:test': /home/vsts/work/1/s/tests/UnitTests/UnitTests.csproj 2018-09-11T10:10:55.5475937Z /usr/bin/dotnet test "/home/vsts/work/1/s/tests/UnitTests/UnitTests.csproj" --configuration Debug 2018-09-11T10:11:12.1218471Z Build started, please wait... 2018-09-11T10:11:13.8595739Z Build completed. 2018-09-11T10:11:13.8604700Z 2018-09-11T10:11:13.8657675Z Test run for /home/vsts/work/1/s/tests/UnitTests/bin/Debug/netcoreapp2.1/UnitTests.dll(.NETCoreApp,Version=v2.1) 2018-09-11T10:11:14.0316508Z Microsoft (R) Test Execution Command Line Tool Version 15.8.0 2018-09-11T10:11:14.0333054Z Copyright (c) Microsoft Corporation. All rights reserved. 2018-09-11T10:11:14.0340944Z 2018-09-11T10:11:14.2715433Z Starting test execution, please wait... 2018-09-11T10:11:17.4434566Z 2018-09-11T10:11:17.4452158Z Total tests: 13. Passed: 13. Failed: 0. Skipped: 0. 2018-09-11T10:11:17.4469353Z Test Run Successful. 2018-09-11T10:11:17.4487479Z Test execution time: 3.1030 Seconds 2018-09-11T10:11:17.4744545Z Finished (Success) 'DotNet:test' in 00:00:22.1594809 2018-09-11T10:11:17.4762546Z Finished (Success) 'Test' in 00:00:22.1763542 2018-09-11T10:11:17.4784240Z Starting target 'Publish' 2018-09-11T10:11:17.4805540Z Starting task 'DotNet:publish': ../src/Sms 2018-09-11T10:11:17.4846742Z /usr/bin/dotnet publish "../src/Sms" --configuration Release --output "/home/vsts/work/1/s/scripts/artifacts/sms" 2018-09-11T10:11:17.7760763Z Microsoft (R) Build Engine version 15.8.166+gd4e8d81a88 for .NET Core 2018-09-11T10:11:17.7776846Z Copyright (C) Microsoft Corporation. All rights reserved. 2018-09-11T10:11:17.7788140Z 2018-09-11T10:11:18.6773302Z Restore completed in 47.33 ms for /home/vsts/work/1/s/src/Sms/Sms.csproj. 2018-09-11T10:11:19.2316609Z Sms -> /home/vsts/work/1/s/src/Sms/bin/Release/netcoreapp2.1/censo.Atlas.Sms.dll 2018-09-11T10:11:19.7536540Z Sms -> /home/vsts/work/1/s/scripts/artifacts/sms/ 2018-09-11T10:11:19.8245208Z Finished (Success) 'DotNet:publish' in 00:00:02.3410584 2018-09-11T10:11:19.8264259Z Finished (Success) 'Publish' in 00:00:02.3491121 2018-09-11T10:11:19.8279277Z Starting target 'Copy-and-update-deploy-scripts' 2018-09-11T10:11:19.8407621Z Finished (Success) 'Copy-and-update-deploy-scripts' in 00:00:00.0159156 2018-09-11T10:11:19.8490244Z 2018-09-11T10:11:19.8506776Z --------------------------------------------------------------------- 2018-09-11T10:11:19.8522233Z Build Time Report 2018-09-11T10:11:19.8536340Z --------------------------------------------------------------------- 2018-09-11T10:11:19.8561173Z Target Duration 2018-09-11T10:11:19.8576304Z ------ -------- 2018-09-11T10:11:19.8607763Z Clean 00:00:00.0022022 2018-09-11T10:11:19.8625343Z Restore-packages 00:00:32.7905066 2018-09-11T10:11:19.8642127Z Build 00:00:06.4154902 2018-09-11T10:11:19.8672425Z Test 00:00:22.1763365 2018-09-11T10:11:19.8687575Z Publish 00:00:02.3490969 2018-09-11T10:11:19.8704421Z Copy-and-update-deploy-scripts 00:00:00.0159036 2018-09-11T10:11:19.8769271Z Total: 00:01:03.8532270 2018-09-11T10:11:19.8785999Z Status: Ok 2018-09-11T10:11:19.8801620Z --------------------------------------------------------------------- 2018-09-11T10:11:19.8924383Z Performance: 2018-09-11T10:11:19.8984786Z - Cli parsing: 668 milliseconds 2018-09-11T10:11:19.9000078Z - Packages: 12 seconds 2018-09-11T10:11:19.9124144Z - Disk IO: 1 second 2018-09-11T10:11:19.9139547Z - Average Download Time: 135 milliseconds 2018-09-11T10:11:19.9166115Z - Number of downloads: 62 2018-09-11T10:11:19.9184103Z - Average Request Time: 151 milliseconds 2018-09-11T10:11:19.9198552Z - Number of Requests: 63 2018-09-11T10:11:19.9214671Z - Creating Runtime Graph: 74 milliseconds 2018-09-11T10:11:19.9231106Z - Retrieve Assembly List: 1 second 2018-09-11T10:11:19.9245704Z - Script compiling: 4 seconds 2018-09-11T10:11:19.9289265Z - Script analyzing: 352 milliseconds 2018-09-11T10:11:19.9306816Z - Script running: 1 minute, 4 seconds 2018-09-11T10:11:19.9323528Z - Script cleanup: 8 milliseconds 2018-09-11T10:11:19.9337780Z - Runtime: 1 minute, 24 seconds 2018-09-11T10:11:19.9371288Z ##[debug]rc:0 2018-09-11T10:11:19.9394755Z ##[debug]rc:0 2018-09-11T10:11:19.9420288Z ##[debug]success:true 2018-09-11T10:11:19.9444574Z ##[debug]success:true 2018-09-11T10:11:19.9462823Z cleanup paket credential manager 2018-09-11T10:11:19.9485309Z ##[debug]set PAKET_VSS_NUGET_ACCESSTOKEN= 2018-09-11T10:11:19.9517642Z ##[debug]Processed: ##vso[task.setvariable variable=PAKET_VSS_NUGET_ACCESSTOKEN;issecret=false;] 2018-09-11T10:11:19.9921661Z ##[section]Finishing: Execute the build.fsx FAKE 5 script ```
matthid commented 5 years ago

@severisv While testing I think there are some edge cases when specifying working dir and relative paths.

Would you expect the relative path to be relative to the working directory, relative to the project root or maybe both if only one exists?

severisv commented 5 years ago

I'm a bit conflicted, because when I first set it up, I just specified scripts/build.fsx and expected it to run with scripts as my working directory without putting any thought into. Actually thinking about it, however, I belive the sound expectation is that it would run scripts/build.fsx from the root folder.

I think the problem for me was that the working directory option was "hidden" under "Complete Command Line", so the whole working directory logic didn't really cross my mind. Also, when I first tried it, I actually thought the working directory setting only applied to the "Set the complete fake command line" way of running the script.

For me, moving the Working Directory-option up with the other main inputs would probably make it easier to understand.

To answer your question I think

matthid commented 5 years ago

I'm a bit conflicted, because when I first set it up, I just specified scripts/build.fsx and expected it to run with scripts as my working directory without putting any thought into.

Actually this was the "intended" behavior, but as it is not working anyway we can change that in any aspect

Specifying working directory somefolder and script to be build.fsx should run the same script from somefolder

Yes I guess that is was the user assumes, however it is not easy to implement as VSTS is resolving the paths from the file picker already, so we never see the relative path. We could change to a regular text input, but then users can no longer just select the build script.

I'd assume the most "standard" use case is to add the task and select a build script.

severisv commented 5 years ago

This makes sense to me aswell, I do see the point of users selecting the file with ... 👍

matthid commented 5 years ago

@severisv Please try again with 1.3.15 (task version 1.0.8). I have tested several combination with an internal test-suite and updated the info boxes slightly.

severisv commented 5 years ago

Running

  - task: isaacabraham.fsharp-helpers-extension.a2dadf20-1a83-4220-a4ee-b52f6c77f3cf.FAKE5@1
    displayName: "Run FAKE script"
    inputs:
      FakeVersion: 5.6.1
      FakeScript: scripts/build.fsx
      WorkingDirectory: scripts

now works as expected.

Thanks for the great work!

matthid commented 5 years ago

Yes the following is now tested before publishing to the marketplace: https://dev.azure.com/fakebuild/FSProjects/_git/Test_Extensions?path=%2F.azure-pipelines.yml&version=GBmaster