You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rebuild tasks to remove mockery from the package (#19730)
* Rebuild tasks to remove mockery from the package
* Add variable to not fail deprecated tasks
* Revert "Add variable to not fail deprecated tasks"
This reverts commit 526bb34.
* fix test when deprecated FF is on
---------
Co-authored-by: Dmitrii Bobreshev <[email protected]>
Co-authored-by: Dmitrii Bobreshev (Akvelon INC) <[email protected]>
assert(tr.succeeded==true,("Should have passed."));
424
433
assert(tr.stdout.indexOf("PrependingInstallationPath")>-1,"Should have prepended installation path");
425
434
assert(tr.stdout.indexOf("PrependGlobalToolPath")>-1,"Should have printed this message as addDotNetCoreToolPath function should have been called.");
426
435
assert(tr.stdout.indexOf("PrependingGlobalToolPath")>-1,"Should have prepended global tool path");
427
436
assert(tr.stdout.indexOf("DownloadAndInstallCalled")==-1,"Should not have printed this message as DownloadAndInstall function should not have been called.");
437
+
}
428
438
},tr,done);
429
439
});
430
440
@@ -433,11 +443,17 @@ describe('DotNetCoreInstaller', function () {
assert(tr.succeeded==true,("Should have passed."));
450
-
assert(tr.stdout.indexOf("PrependingInstallationPath")>-1,"Should have prepended installation path");
451
-
assert(tr.stdout.indexOf("PrependGlobalToolPath")>-1,"Should have printed this message as addDotNetCoreToolPath function should have been called.");
452
-
assert(tr.stdout.indexOf("ErrorWhileSettingDotNetToolPath")>-1,"Should have printed this message as error must have been encountered while setting GlobalToolPath.");
assert(tr.succeeded==true,("Should have passed."));
471
+
assert(tr.stdout.indexOf("PrependingInstallationPath")>-1,"Should have prepended installation path");
472
+
assert(tr.stdout.indexOf("PrependGlobalToolPath")>-1,"Should have printed this message as addDotNetCoreToolPath function should have been called.");
473
+
assert(tr.stdout.indexOf("ErrorWhileSettingDotNetToolPath")>-1,"Should have printed this message as error must have been encountered while setting GlobalToolPath.");
Copy file name to clipboardExpand all lines: Tasks/GradleV3/task.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
"author": "Microsoft Corporation",
17
17
"version": {
18
18
"Major": 3,
19
-
"Minor": 231,
19
+
"Minor": 238,
20
20
"Patch": 0
21
21
},
22
22
"releaseNotes": "Configuration of the SonarQube analysis was moved to the [SonarQube](https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube) or [SonarCloud](https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarcloud) extensions, in task `Prepare Analysis Configuration`",
Copy file name to clipboardExpand all lines: Tasks/InstallAppleCertificateV2/task.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
"author": "Microsoft Corporation",
14
14
"version": {
15
15
"Major": 2,
16
-
"Minor": 231,
16
+
"Minor": 238,
17
17
"Patch": 0
18
18
},
19
19
"releaseNotes": "Fixes codesign hangs on a self hosted agent. A Keychain password is now required to use `Default Keychain` or `Custom Keychain`. Microsoft hosted builds should use `Temporary Keychain`.",
Copy file name to clipboardExpand all lines: Tasks/XcodeV5/task.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
"author": "Microsoft Corporation",
13
13
"version": {
14
14
"Major": 5,
15
-
"Minor": 235,
15
+
"Minor": 238,
16
16
"Patch": 0
17
17
},
18
18
"releaseNotes": "This version of the task is compatible with Xcode 8 - 13. Features that were solely to maintain compatibility with Xcode 7 have been removed. This task has better options for using Microsoft-hosted macOS agents.",
0 commit comments