-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ALMOctaneConnectionVerifier task - fixing the lack of decorat…
…or injection in classic pipelines.
- Loading branch information
stekel
committed
Dec 10, 2019
1 parent
03de91c
commit 5952064
Showing
6 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"id": "c4fe5a36-45d1-4ecc-9ad5-6ec18a1ba0f8", | ||
"name": "octane-connection-verifier", | ||
"friendlyName": "ALM Octane Connection Verifier", | ||
"description": "ALM Octane Connection Verifier", | ||
"author": "Micro Focus", | ||
"category": "Build", | ||
"visibility": [ | ||
"Build", | ||
"Release" | ||
], | ||
"demands": [], | ||
"version": { | ||
"Major": "1", | ||
"Minor": "0", | ||
"Patch": "0" | ||
}, | ||
"minimumAgentVersion": "1.95.0", | ||
"instanceNameFormat": "ALM Octane Connection Verifier", | ||
"inputs": [ | ||
{ | ||
"name": "OctaneServiceConnection", | ||
"type": "connectedService:OctaneServiceConnection", | ||
"label": "Octane service/server end point", | ||
"required": false, | ||
"helpMarkDown": "Select the Octane endpoint to use. If needed, click on 'manage', and add a new service endpoint of type 'Octane server connection'" | ||
} | ||
], | ||
"execution": { | ||
"Node": { | ||
"target": "task.js", | ||
"argumentFormat": "" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
async function runTask() { | ||
await Promise.resolve(); | ||
} | ||
|
||
runTask().catch(err => console.error(err)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters