-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
Add support for source-build #11717
Add support for source-build #11717
Conversation
e8965f2
to
94a9fd5
Compare
a01b887
to
6f8d9ba
Compare
This should be excluded already, and is already excluded locally not sure why it's being built on the CI
f7893c7
to
a34d389
Compare
4ccf194
to
42912c3
Compare
This comment was made automatically. If there is a problem contact aspnetcore-build@microsoft.com. I've triaged the above build. I've created/commented on the following issue(s) |
Co-Authored-By: Doug Bunting <6431421+dougbu@users.noreply.github.com>
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.
Just a couple of outstanding points, including a few on earlier iterations
Hurray:grey_exclamation: |
What is the expected happy path for building the repository from scratch on Ubuntu 18.04 in WSL 2? I'm using this script: #!/usr/bin/env bash
cd /mnt/e/GitHub/sharpninja
rm -r -f aspnetcore
git clone --recursive git@github.com:sharpninja/AspNetCore.git
git submodule update --init --recursive
cd aspnetcore
git remote add upstream https://github.com/aspnet/aspnetcore
git fetch upstream
git merge upstream/master
./restore.sh
./build.sh --all --restore -c Debug -v d Unfortunately, it attempts to import |
@sharpninja it sounds like you're having an issue with building this repo locally. If that's the case, commenting on a merged PR is not likely to get attention. Please file a new issue if my comments don't help. Suggest leaving In case your fork contains commits that are causing problems, I also suggest |
Addresses #3752