-
-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy path.dockerignore
More file actions
51 lines (44 loc) · 934 Bytes
/
Copy path.dockerignore
File metadata and controls
51 lines (44 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Keep build artefacts out of the build context. .git is deliberately kept,
# since cpp/CMakeLists.txt reads the commit hash.
# Build and install trees
cpp/build*/
python/build*/
# Compiled objects and extension modules
**/*.o
**/*.a
**/*.so
**/*.so.*
**/*.dylib
**/*.dll
**/*.pyc
**/__pycache__/
# Generated sources and configuration
cpp/dolfinx/common/version.h
dolfinx.conf
DOLFINXConfig*.cmake
**/*.pc
# Documentation output
cpp/doc/html/
cpp/doc/latex/
cpp/doxygen/
python/doc/build/
python/doc/source/_autogenerated/
python/doc/source/generated/
# Test and demo output. .xdmf and .vtkhdf are test fixture data.
**/test_*_tempdir/
**/Testing/
**/*.bp/
**/*.h5
**/*.pvd
**/*.pvtu
**/*.vtu
# CMake scratch, which also catches build trees nested under tests
# and demos without a broad build*/ rule
**/CMakeFiles/
**/CMakeCache.txt
# Editor and tool caches
**/.cache/
**/.mypy_cache/
**/.pytest_cache/
**/.ruff_cache/
**/*~