From 7d5074b8bd60ac622fda7fa6dd3ceadf0f53fbe1 Mon Sep 17 00:00:00 2001 From: Davide Bettio Date: Sun, 13 Oct 2024 12:52:31 +0200 Subject: [PATCH] CI: build-and-test: disable OTP master A recent change made impossible to use beam files compiled with OTP master, so let's disable it. Signed-off-by: Davide Bettio --- .github/workflows/build-and-test.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 74047161e..b2440c9d1 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -197,12 +197,14 @@ jobs: cflags: "" elixir_version: "1.14" - # master/main version of OTP/Elixir - - os: "ubuntu-24.04" - cc: "cc" - cxx: "c++" - otp: "master" - elixir_version: "main" +# TODO: enable master again +# master will not work until we don't adapt to atom table changes +# # master/main version of OTP/Elixir +# - os: "ubuntu-24.04" +# cc: "cc" +# cxx: "c++" +# otp: "master" +# elixir_version: "main" # Additional default compiler builds - os: "ubuntu-20.04"