mirror of
https://github.com/micropython/micropython.git
synced 2025-12-13 08:20:13 +01:00
After locally building zephyr e.g., with
$ tools/ci.sh zephyr_setup zephyr_run_tests
these directories are created by the build system. However, they should
never be tracked by git. Similarly with the esp8266 ci.sh functions.
Signed-off-by: Jeff Epler <jepler@unpythonic.net>
35 lines
788 B
Plaintext
35 lines
788 B
Plaintext
# This .gitignore file is intended to be minimal.
|
|
#
|
|
# If you find that you need additional rules, such as IDE temporary
|
|
# files, please do so either via a global .gitignore file (registered
|
|
# with core.excludesFile), or by adding private repository-specific
|
|
# rules to .git/info/exclude. See https://git-scm.com/docs/gitignore
|
|
# for more information.
|
|
|
|
# Build directories
|
|
build/
|
|
build-*/
|
|
docs/genrst/
|
|
|
|
# Test failure outputs and intermediate artefacts
|
|
tests/results/*
|
|
tests/ports/unix/ffi_lib.so
|
|
|
|
# Python cache files
|
|
__pycache__/
|
|
|
|
# Customized Makefile/project overrides
|
|
GNUmakefile
|
|
user.props
|
|
|
|
# MacOS desktop metadata files
|
|
.DS_Store
|
|
|
|
# Created by ci.sh zephyr targets
|
|
/.ccache
|
|
/zephyrproject
|
|
|
|
# Created by ci.sh esp8266 targets
|
|
/xtensa-lx106-elf-standalone.tar.gz
|
|
/xtensa-lx106-elf/
|