From 4b8635d15113e6239f64c533c0217bfd0f7f53ce Mon Sep 17 00:00:00 2001 From: Dominic Letz Date: Mon, 16 Sep 2024 16:11:32 +0200 Subject: [PATCH] Update default otp release to 26.2.5.3 --- .github/workflows/ci.yml | 2 +- .tool-versions | 2 +- deployment/fabfile.py | 2 +- notes.exs | 4 ++++ run | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7b8d18..531b9bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Setup elixir uses: erlef/setup-elixir@v1 with: - otp-version: 25.3.2.13 + otp-version: 26.2.5.3 elixir-version: 1.15.7 - uses: actions/checkout@v1 diff --git a/.tool-versions b/.tool-versions index f699762..d7a4257 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,3 +1,3 @@ python 3.9.18 -erlang 25.3.2.13 +erlang 26.2.5.3 elixir 1.15.7 diff --git a/deployment/fabfile.py b/deployment/fabfile.py index eb9c344..b142fa3 100644 --- a/deployment/fabfile.py +++ b/deployment/fabfile.py @@ -33,7 +33,7 @@ def install_erlang(): run(". ~/.asdf/asdf.sh && asdf plugin add elixir") run(". ~/.asdf/asdf.sh && asdf install elixir 1.15.7") - run(". ~/.asdf/asdf.sh && asdf install erlang 25.3.2.13") + run(". ~/.asdf/asdf.sh && asdf install erlang 26.2.5.3") def install(): if not exists("~/.asdf/asdf.sh"): diff --git a/notes.exs b/notes.exs index 51bf03c..d65dd5c 100644 --- a/notes.exs +++ b/notes.exs @@ -1,3 +1,7 @@ +# 16th Sept 2024 + +:ets.all |> Enum.map(fn e -> :ets.info(e, :name) end) |> Enum.filter(fn n -> n == MutableMap.Beacon end) |> length + # 11th Sept 2024 mon = fn mon -> diff --git a/run b/run index 0f8183a..1146335 100755 --- a/run +++ b/run @@ -20,5 +20,5 @@ if [ -f ./.env ]; then export `cat ./.env` fi -export ELIXIR_ERL_OPTIONS='+sbwt none -noinput -noshell -sname diode +A 8' +export ELIXIR_ERL_OPTIONS="${ELIXIR_ERL_OPTIONS} +sbwt none -noinput -noshell -sname diode +A 8" exec elixir -S mix run --no-halt