You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Context: https://docs.github.com/en/copilot/customizing-copilot/customizing-the-development-environment-for-copilot-coding-agent
Setup `.github/workflows/copilot-setup-steps.yml`, which is a Github action
that runs (only on Ubuntu) prior to Copilot doing its work.
This makes Copilot more useful, as it has a locally cloned and built source tree
with all dependencies installed. Copilot will be able to run various commands
to achieve tasks as assigned.
Other changes:
* Ignore errors from `<GitCommitsInRange/>`
Copilot must keep some custom `git` history, as this command was failing during our build:
> git log ^cfa4209..HEAD --oneline
fatal: bad revision '^cfa4209..HEAD'
We can ignore the error, and just use 0 for the commit range if this occurs.
* Our `android-deps` workload for provisioning Mono, can simply use:
"android-deps": { "extends" : [ "microsoft-net-runtime-android" ] }
Previously, it was failing to install a non-existent pack on Linux:
Installing pack Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x86 version 10.0.0-preview.6.25304.106...
Co-authored-by: Jonathan Peppers <[email protected]>
0 commit comments