mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-03 01:39:16 +02:00

Travis is getting slower and was already hard to debug. This commit: - moves from travis to Circle-CI - has a ci-scripts/README.md which explains what is contained there - puts all build and CI scripts into "ci_scripts" directory - allows to run full ci runs locally - trims down the base Docker image where tests/docs/wheels are run from 4.4GB to 1.7GB - fixes #628 Using circle-ci also means that we can probably integrate Mac-OS build steps more easily. I am sure that my initial circle-ci config (helped by kind hints from @dignifiedquire ) can be improved.
71 lines
883 B
Text
71 lines
883 B
Text
# ignore backup files
|
|
*~
|
|
|
|
# ignore tox and docker stuff
|
|
.docker-*
|
|
wheelhouse
|
|
workspace
|
|
|
|
# ignore build temporary files
|
|
*.o
|
|
.deps
|
|
.dirstamp
|
|
.eggs
|
|
__pycache__
|
|
.pytest_cache
|
|
*.egg-info
|
|
python/dist
|
|
|
|
# ignore Codeblocks temporary files and build directories.
|
|
*.cbp
|
|
*.depend
|
|
*.layout
|
|
/bin/
|
|
/obj/
|
|
|
|
# ignore autotools temporaries
|
|
autoscan.log
|
|
cleanup.sh
|
|
config.log
|
|
config.status
|
|
configure.scan
|
|
Makefile
|
|
/autom4te.cache/
|
|
/config.h
|
|
/stamp-*
|
|
|
|
# ignore generated files
|
|
Makefile.in
|
|
/aclocal.m4
|
|
/compile
|
|
/configure
|
|
/install-sh
|
|
/missing
|
|
po/*\.gmo
|
|
po/stamp-po
|
|
po/POTFILES
|
|
po/remove-potcdate.sed
|
|
po/*.gmo
|
|
po/*.insert-header
|
|
/docs/html/
|
|
/docs/xml/
|
|
|
|
# ignore other files
|
|
.DS_Store
|
|
capi.abi3.so
|
|
|
|
# ignore build remnants
|
|
builddir/
|
|
python/build
|
|
libs/packagecache
|
|
libs/zlib-1.2.11
|
|
|
|
# ignore python binding stuff
|
|
python/.tox/
|
|
python/liveconfig
|
|
python/src/deltachat/capi*so
|
|
python/wheelhouse/
|
|
|
|
.*.swp
|
|
|
|
build
|