Skip to content

Commit

Permalink
Stop shipping Dialyzer PLTs with Hex package
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Jul 10, 2024
1 parent c08221d commit ec6025f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
uses: actions/cache@v4
id: cache-plt
with:
path: priv/plts
path: plts
key: |
${{ runner.os }}-otp${{ matrix.otp }}-elixir${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/cover
/deps
/doc
/priv/plts
/plts
erl_crash.dump
*.ez
/pages/Telemetry events.md
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ defmodule Xandra.Mixfile do
flags: [:no_contracts, :no_improper_lists],
list_unused_filters: true,
plt_add_apps: [:ssl, :crypto, :mix, :ex_unit, :erts, :kernel, :stdlib],
plt_local_path: "priv/plts",
plt_core_path: "priv/plts"
plt_local_path: "plts",
plt_core_path: "plts"
],

# Testing
Expand Down

0 comments on commit ec6025f

Please sign in to comment.