-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Build using Arcade #14177
Build using Arcade #14177
Conversation
This comment has been minimized.
This comment has been minimized.
fc40a85
to
789dc1f
Compare
# | ||
variables: | ||
- name: _BuildConfig | ||
value: Release |
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.
Should we build both Debug and Release?
(Sorting out the official build using an internal branch.) |
This comment has been minimized.
This comment has been minimized.
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.
This comment has been minimized.
This comment has been minimized.
702ee4e
to
7d5bd05
Compare
Success! (Internal CI passed) |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
@bricelam I'm taking a look on the powershell signing issues. |
Thanks! I've been trying to repro it locally |
@bricelam , turns out this is a bug in SignTool. I've a PR to fix that in progress here: dotnet/arcade#1634 |
Notes for Muggles: - `build` only compiles by default. Add `-test` to run tests and `-pack` to get nupkgs - Dependency versions are now in `eng/Versions.props` - No more API Check, *.baselines.json, or *.breakingchanges.json - No more NuGet package verifier - Nightly builds are now published to https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json Fixes #12537, resolves #14025, resolves dotnet/arcade#1051, resolves dotnet/arcade#1052, resolves dotnet/arcade#1053, resolves dotnet/arcade#1054
Notes for Muggles:
build
compiles,restore
just initializes the repo,test
runs tests. Adding-pack
produces nupkgseng/Versions.props
Fixes #12537, resolves #14025, resolves dotnet/arcade#1051, resolves dotnet/arcade#1052, resolves dotnet/arcade#1053, resolves dotnet/arcade#1054