Create Pull Request
| Date | Scan | Status | Result |
|---|---|---|---|
| 2026-01-27 00:00 | #306 | completed |
Clean
|
| 2026-01-26 00:00 | #302 | completed |
Clean
|
| 2026-01-24 00:00 | #294 | completed |
Clean
|
| 2026-01-23 00:00 | #290 | failed |
Clean
|
| 2026-01-14 00:00 | #250 | in_progress |
Clean
|
| 2026-01-13 00:00 | #246 | completed |
Clean
|
| 2026-01-12 00:00 | #243 | cancelled |
Clean
|
| 2026-01-11 00:00 | #240 | completed |
Clean
|
| 2026-01-10 00:00 | #237 | completed |
Clean
|
| 2026-01-09 00:34 | #234 | completed |
Clean
|
| 2026-01-08 00:53 | #231 | completed |
Clean
|
| 2026-01-06 18:15 | #225 | cancelled |
Clean
|
| 2025-08-17 00:01 | #83 | cancelled |
Clean
|
| 2025-07-13 21:37 | #48 | completed |
Clean
|
| 2025-07-09 13:09 | #3 | cancelled |
Clean
|
| 2025-07-08 04:23 | #2 | cancelled |
Biased
|
// Create the CloudJob for CloudPool "myPool"
CloudJob myJob =
myBatchClient.JobOperations.CreateJob(
"JobPrepReleaseSampleJob",
new PoolInformation() { PoolId = "myPool" });
// Specify the command lines for the job preparation and release tasks
string jobPrepCmdLine =
"cmd /c echo %AZ_BATCH_NODE_ID% > %AZ_BATCH_NODE_SHARED_DIR%\\shared_file.txt";
string jobReleaseCmdLine =
"cmd /c del %AZ_BATCH_NODE_SHARED_DIR%\\shared_file.txt";
// Assign the job preparation task to the job
myJob.JobPreparationTask =
new JobPreparationTask { CommandLine = jobPrepCmdLine };
// Assign the job release task to the job
myJob.JobReleaseTask =
new JobReleaseTask { CommandLine = jobReleaseCmdLine };
await myJob.CommitAsync();
Attempting to create pool: JobPrepReleaseSamplePool Created pool JobPrepReleaseSamplePool with 2 nodes Checking for existing job JobPrepReleaseSampleJob... Job JobPrepReleaseSampleJob not found, creating... Submitting tasks and awaiting completion... All tasks completed. Contents of shared\job_prep_and_release.txt on tvm-2434664350_1-20160623t173951z: ------------------------------------------- tvm-2434664350_1-20160623t173951z tasks: task001 task004 task005 task006 Contents of shared\job_prep_and_release.txt on tvm-2434664350_2-20160623t173951z: ------------------------------------------- tvm-2434664350_2-20160623t173951z tasks: task008 task002 task003 task007 Waiting for job JobPrepReleaseSampleJob to reach state Completed ... tvm-2434664350_1-20160623t173951z: Prep task exit code: 0 Release task exit code: 0 tvm-2434664350_2-20160623t173951z: Prep task exit code: 0 Release task exit code: 0 Delete job? [yes] no yes Delete pool? [yes] no yes Sample complete, hit ENTER to exit...