Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update canary ignored packages #376

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
Prefix your items with `(Template)` if the change is about the template and not the resulting application.

## 2.1.X
- Ignore packages `Uno.CommunityToolkit.WinUI` and `Uno.WinUI.Lottie` in `canary-merge.yml` to prevent canary from failing.
- Install `GooseAnalyzers` to enable the `SA1600` rule with its scope limited to interfaces and improve xml documentation.
- Replace local `DispatcherQueue` extension methods with the ones from the WinUI and Uno.WinUI Community Toolkit.
- Add `Microsoft.VisualStudio.Threading.Analyzers` to check for async void usages and fix async void usages.
Expand Down
4 changes: 2 additions & 2 deletions build/canary-merge.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
schedules:
schedules:
- cron: "00 05 * * Mon-Fri" # Format is "Minutes Hours DayOfMonth Month DayOfWeek" in UTC (that's why 05 is 1h EST)
displayName: 'Nightly weekdays build - 1:00 EST'
always: true # Start a new run even if the code didn't change (because packages might have changed).
Expand Down Expand Up @@ -46,7 +46,7 @@ steps:
nugetVersion: 'dev,beta,stable'
allowDowngrade: true
packageAuthor: 'nventive'
ignorePackages: 'GeneratedSerializers.Json;Nventive.View.Uno;BiometryService'
ignorePackages: 'GeneratedSerializers.Json;Nventive.View.Uno;BiometryService;Uno.CommunityToolkit.WinUI;Uno.WinUI.Lottie'
useVersionOverrides: true
versionOverridesFile: 'https://raw.githubusercontent.com/nventive/Canary/master/version-overrides.json'

Expand Down