-
Notifications
You must be signed in to change notification settings - Fork 12
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
Improve testing for previous sdks #229
Conversation
tl-Roberto-Mancinelli
commented
Nov 25, 2024
•
edited
Loading
edited
- Added testing for previous sdk
- Remove unnecessary code in cake script
c9c3ce4
to
0d6bae8
Compare
3652ac6
to
e83faee
Compare
- name: Setup .NET 8.0 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 8.0.x | ||
- name: Setup .NET 6.0 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 6.0.x | ||
- name: Setup .NET 3.1 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 3.1.x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not getting how this extra SDKs are used at CI time. could you shed a light? I don't see a multi-build process/pipeline, but maybe I'm missing something
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The multi build is triggered by the multiple frameworks declared in the test project, I was under the impression that using the latest sdk could also build previous versions of net but that doesn't seem the case in our ci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok cool! Thanks!