mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Add copilot instructions
This commit is contained in:
parent
ebbfb206e6
commit
6c5d27229b
1 changed files with 16 additions and 0 deletions
16
.github/copilot-instructions.md
vendored
Normal file
16
.github/copilot-instructions.md
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Repository Build & Test Instructions
|
||||
|
||||
## Build Procedures
|
||||
- **Required dependencies**: A C compiler (either clang or gcc) and a Go compiler. The Go compiler
|
||||
should be at least the version mentioned in the go.mod file.
|
||||
- **Bootstrap:** Always run `./dev.sh deps` to download all needed dependencies
|
||||
- **Build command:** Run `./dev.sh build` to build the project
|
||||
|
||||
## Test Procedures
|
||||
- To run the complete test suite, run `./test.py`
|
||||
- To run a specific test, run `./test.py test-name` t
|
||||
`test-name` is the name of the test without the
|
||||
leading `test_` for Python tests and without the leading `Test` for Go tests.
|
||||
|
||||
## Benchmarking
|
||||
- To run the benchmark: `./benchmark.py`
|
||||
Loading…
Add table
Add a link
Reference in a new issue