-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
76 lines (62 loc) · 1.01 KB
/
.gitignore
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
**/.ccls-cache/*
**/.zig-cache/*
**/.build/sys/*
*~
*.o
*.a
**/.DS_Store
**/.stack-work
**/*.dSYM
**/*.hi
**/*.o
**/a.out
**/core
**/build-cache
**/zig-cache
**/.actonc.lock
backend/actondb
backend/failure_detector/db_messages_test
backend/test/actor_ring_tests_local
backend/test/actor_ring_tests_remote
backend/test/db_unit_tests
backend/test/queue_unit_tests
backend/test/skiplist_test
backend/test/test_client
base/.actonc.lock
base/build-cache
base/out
builder/builder
builder/build_runner.zig
builder/zig-cache
compiler/actonc
compiler/package.yaml
compiler/tests/*.ty
debian/.debhelper
debian/acton/
debian/acton.substvars
debian/debhelper-build-stamp
debian/changelog
debian/files
deps/*
deps-download
dist/*
builder/deps/*
examples/*
!examples/*.*
!examples/*/
examples/**
!examples/**/*.*
!examples/**/*/
test/*
!test/*.*
test/*.log
!test/*/
test/**
!test/Makefile
!test/**/*.*
test/**/*.log
!test/**/*/
# tests organized as acton projects; ignore all but source
test/*/*/out/**
test/*/*/build.sh
**/.build/sys/*