-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workload garbage collection tests for side-by-side manifests (#35857
- Loading branch information
Showing
6 changed files
with
589 additions
and
101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{ | ||
"version": "2.0.0", | ||
"workloads": { | ||
"xamarin-android": { | ||
"description": "Create, build and run Android apps", | ||
"kind": "dev", | ||
"packs": [ | ||
"Xamarin.Android.Templates" | ||
], | ||
"extends": [ | ||
"xamarin-android-build" | ||
] | ||
}, | ||
"xamarin-android-build": { | ||
"description": "Build and run Android apps", | ||
"packs": [ | ||
"Xamarin.Android.Sdk", | ||
"Xamarin.Android.Framework", | ||
"Xamarin.Android.Runtime" | ||
] | ||
}, | ||
"android-sdk-workload":{ | ||
"description": "Test workload", | ||
"packs": [ | ||
"Xamarin.Android.Sdk" | ||
] | ||
}, | ||
"android-templates-workload":{ | ||
"description": "Test workload", | ||
"packs": [ | ||
"Xamarin.Android.Templates" | ||
] | ||
}, | ||
"android-buildtools-workload":{ | ||
"description": "Test workload", | ||
"packs": [ | ||
"Xamarin.Android.BuildTools" | ||
] | ||
}, | ||
"xamarin-empty-mock": { | ||
"description": "Empty mock workload for testing", | ||
"kind": "dev", | ||
"packs": [], | ||
"extends": [] | ||
} | ||
}, | ||
"packs": { | ||
"Xamarin.Android.Sdk": { | ||
"kind": "sdk", | ||
"version": "8.4.7" | ||
}, | ||
"Xamarin.Android.Templates": { | ||
"kind": "template", | ||
"version": "1.1.0" | ||
}, | ||
"Xamarin.Android.Framework": { | ||
"kind": "framework", | ||
"version": "8.5.0" | ||
}, | ||
"Xamarin.Android.Runtime": { | ||
"kind": "library", | ||
"version": "8.5.0.1" | ||
}, | ||
"Xamarin.Android.BuildTools": { | ||
"version": "8.5.0", | ||
"kind": "sdk", | ||
"alias-to": { | ||
"osx": "Xamarin.Android.BuildTools.MacHost", | ||
"win": "Xamarin.Android.BuildTools.WinHost", | ||
"linux": "Xamarin.Android.BuildTools.LinuxHost" | ||
} | ||
}, | ||
"Test.Pack.A": { | ||
"version": "1.0.0", | ||
"kind": "sdk" | ||
}, | ||
"Test.Pack.B": { | ||
"version": "2.0.0", | ||
"kind": "framework" | ||
} | ||
} | ||
} |
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,82 @@ | ||
{ | ||
"version": "3.0.0", | ||
"workloads": { | ||
"xamarin-android": { | ||
"description": "Create, build and run Android apps", | ||
"kind": "dev", | ||
"packs": [ | ||
"Xamarin.Android.Templates" | ||
], | ||
"extends": [ | ||
"xamarin-android-build" | ||
] | ||
}, | ||
"xamarin-android-build": { | ||
"description": "Build and run Android apps", | ||
"packs": [ | ||
"Xamarin.Android.Sdk", | ||
"Xamarin.Android.Framework", | ||
"Xamarin.Android.Runtime" | ||
] | ||
}, | ||
"android-sdk-workload":{ | ||
"description": "Test workload", | ||
"packs": [ | ||
"Xamarin.Android.Sdk" | ||
] | ||
}, | ||
"android-templates-workload":{ | ||
"description": "Test workload", | ||
"packs": [ | ||
"Xamarin.Android.Templates" | ||
] | ||
}, | ||
"android-buildtools-workload":{ | ||
"description": "Test workload", | ||
"packs": [ | ||
"Xamarin.Android.BuildTools" | ||
] | ||
}, | ||
"xamarin-empty-mock": { | ||
"description": "Empty mock workload for testing", | ||
"kind": "dev", | ||
"packs": [], | ||
"extends": [] | ||
} | ||
}, | ||
"packs": { | ||
"Xamarin.Android.Sdk": { | ||
"kind": "sdk", | ||
"version": "8.4.7" | ||
}, | ||
"Xamarin.Android.Templates": { | ||
"kind": "template", | ||
"version": "1.2.0" | ||
}, | ||
"Xamarin.Android.Framework": { | ||
"kind": "framework", | ||
"version": "8.6.0" | ||
}, | ||
"Xamarin.Android.Runtime": { | ||
"kind": "library", | ||
"version": "8.6.0.0" | ||
}, | ||
"Xamarin.Android.BuildTools": { | ||
"version": "8.6.0", | ||
"kind": "sdk", | ||
"alias-to": { | ||
"osx": "Xamarin.Android.BuildTools.MacHost", | ||
"win": "Xamarin.Android.BuildTools.WinHost", | ||
"linux": "Xamarin.Android.BuildTools.LinuxHost" | ||
} | ||
}, | ||
"Test.Pack.A": { | ||
"version": "1.0.0", | ||
"kind": "sdk" | ||
}, | ||
"Test.Pack.B": { | ||
"version": "2.0.0", | ||
"kind": "framework" | ||
} | ||
} | ||
} |
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
Oops, something went wrong.