-
Notifications
You must be signed in to change notification settings - Fork 478
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
Install sxs with the install-dotnet scripts #124
Conversation
@@ -11,6 +11,7 @@ jobs: | |||
build: | |||
runs-on: ${{ matrix.operating-system }} | |||
strategy: | |||
fail-fast: false |
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.
Curious question: What does fail-fast
do?
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.
When fail-fast is true the other jobs in the matrix are immediately cancelled when one of the job fails. So when the MacOS job fails, the Windows job (which typically takes longer) is immediately cancelled and potentially hides different errors.
Docs should be updated to include an sxs example. |
@jetersen Thanks for calling this out, I've added an example to README: https://github.com/actions/setup-dotnet#usage |
Fixes: #25
Using the install-dotnet scripts to inside in default global location to enable SxS builds and to use cached versions on hosted agents by default. Install-dotnet.ps1 script has been updated to support proxy setting requirements.