-
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.
Refactor workload garbage collection tests, add test for side-by-side…
… manifest collection
- Loading branch information
1 parent
288c9a3
commit 9061e0a
Showing
5 changed files
with
486 additions
and
100 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
Oops, something went wrong.