Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Merge pull request #28117 from jcagme/master
Browse files Browse the repository at this point in the history
Enable task extensions
  • Loading branch information
JC Aguilera authored Mar 16, 2018
2 parents be1a42e + 83796ff commit 0087308
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 0 deletions.
48 changes: 48 additions & 0 deletions buildpipeline/DotNet-CoreFx-Trusted-Windows-NoTest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
{
"build": [
{
"environment": {},
"enabled": true,
"continueOnError": true,
"alwaysRun": false,
"displayName": "Run AgentTools/Begin.ps1",
"timeoutInMinutes": 0,
"condition": "succeededOrFailed()",
"task": {
"id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1",
"versionSpec": "2.*",
"definitionType": "task"
},
"inputs": {
"targetType": "inline",
"filePath": "",
"arguments": "",
"script": "if (Test-Path \"$(AgentToolsPath)\\Begin.ps1\") {\n \"Begin.ps1 script found. Executing...\"\n & $(AgentToolsPath)\\Begin.ps1\n} else {\n \"Begin.ps1 script does not exist. Moving on...\"\n}",
"errorActionPreference": "continue",
"failOnStderr": "false",
"ignoreLASTEXITCODE": "true",
"workingDirectory": ""
}
},
{
"environment": {},
"enabled": true,
Expand Down Expand Up @@ -296,6 +320,30 @@
"logProjectEvents": "false",
"createLogFile": "false"
}
},
{
"environment": {},
"enabled": true,
"continueOnError": true,
"alwaysRun": true,
"displayName": "Run AgentTools/End.ps1",
"timeoutInMinutes": 0,
"condition": "succeededOrFailed()",
"task": {
"id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1",
"versionSpec": "2.*",
"definitionType": "task"
},
"inputs": {
"targetType": "inline",
"filePath": "",
"arguments": "",
"script": "if (Test-Path \"$(AgentToolsPath)\\End.ps1\") {\n \"End.ps1 script found. Executing...\"\n & $(AgentToolsPath)\\End.ps1\n} else {\n \"End.ps1 script does not exist. Moving on...\"\n}",
"errorActionPreference": "continue",
"failOnStderr": "false",
"ignoreLASTEXITCODE": "true",
"workingDirectory": ""
}
}
],
"options": [
Expand Down
48 changes: 48 additions & 0 deletions buildpipeline/DotNet-CoreFx-Trusted-Windows.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
{
"build": [
{
"environment": {},
"enabled": true,
"continueOnError": true,
"alwaysRun": false,
"displayName": "Run AgentTools/Begin.ps1",
"timeoutInMinutes": 0,
"condition": "succeededOrFailed()",
"task": {
"id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1",
"versionSpec": "2.*",
"definitionType": "task"
},
"inputs": {
"targetType": "inline",
"filePath": "",
"arguments": "",
"script": "if (Test-Path \"$(AgentToolsPath)\\Begin.ps1\") {\n \"Begin.ps1 script found. Executing...\"\n & $(AgentToolsPath)\\Begin.ps1\n} else {\n \"Begin.ps1 script does not exist. Moving on...\"\n}",
"errorActionPreference": "continue",
"failOnStderr": "false",
"ignoreLASTEXITCODE": "true",
"workingDirectory": ""
}
},
{
"environment": {},
"enabled": true,
Expand Down Expand Up @@ -347,6 +371,30 @@
"logProjectEvents": "false",
"createLogFile": "false"
}
},
{
"environment": {},
"enabled": true,
"continueOnError": true,
"alwaysRun": true,
"displayName": "Run AgentTools/End.ps1",
"timeoutInMinutes": 0,
"condition": "succeededOrFailed()",
"task": {
"id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1",
"versionSpec": "2.*",
"definitionType": "task"
},
"inputs": {
"targetType": "inline",
"filePath": "",
"arguments": "",
"script": "if (Test-Path \"$(AgentToolsPath)\\End.ps1\") {\n \"End.ps1 script found. Executing...\"\n & $(AgentToolsPath)\\End.ps1\n} else {\n \"End.ps1 script does not exist. Moving on...\"\n}",
"errorActionPreference": "continue",
"failOnStderr": "false",
"ignoreLASTEXITCODE": "true",
"workingDirectory": ""
}
}
],
"options": [
Expand Down

0 comments on commit 0087308

Please sign in to comment.