-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (44 loc) · 1.81 KB
/
.gitignore
File metadata and controls
57 lines (44 loc) · 1.81 KB
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
# The directory Mix will write compiled artifacts to.
/_build/
# If you run "mix test --cover", coverage assets end up here.
/cover/
# The directory Mix downloads your dependencies sources to.
/deps/
# Where third-party dependencies like ExDoc output generated docs.
/doc/
# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump
# Also ignore archive artifacts (built via "mix archive.build").
*.ez
# Ignore package tarball (built via "mix hex.build").
ex_arrow-*.tar
# Temporary files, for example, from tests.
/tmp/
# NIF artifacts (built from native/ex_arrow_native).
/priv/native/
# RustlerPrecompiled checksum file.
#
# This file MUST be populated before publishing to Hex, but must NOT be
# committed while it still contains an empty map — an empty map causes
# downstream users to get a hard checksum-verification error instead of a
# graceful fallback or a build-from-source.
#
# Release workflow:
# 1. Push the vX.Y.Z git tag so GitHub Actions uploads precompiled NIF
# artifacts to the GitHub release.
# 2. Run `mix rustler_precompiled.download ExArrow.Native --all` locally.
# This populates checksum-Elixir.ExArrow.Native.exs with the SHA-256
# digests for every target/OTP combination.
# 3. Commit the populated file on the release branch, then run
# `mix hex.publish`. The file is listed in mix.exs :files so it will
# be included in the Hex package even though it is git-ignored.
#
# During local development config/config.exs sets force_build: true, so this
# file is never consulted and can safely remain absent from the working tree.
checksum-Elixir.ExArrow.Native.exs
# Dialyzer PLT files (large build artefacts; cached in CI).
/priv/plts/
/native/ex_arrow_native/target
# Benchmark output (HTML/JSON reports generated by mix run bench/)
/bench/output/
.DS_Store