From d59b01978dc414be158ae7d5563ffa01b1c4c58a Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Sat, 5 Aug 2023 22:11:24 -0500 Subject: [PATCH] Disable 20 in CI/CD due to erl 26 issue. --- .github/workflows/cicd.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 18db2c7..71e73d9 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -47,7 +47,12 @@ jobs: strategy: matrix: - otp_version: ['20.3', '21.3', '22.3', '23.3'] + # XXX Once the fix for Erl 26.0 is in place for rebar3, we can re-enable + # 20.3 in CI/CD. More info here: + # * https://github.com/lfe/rebar3/issues/82 + # * https://github.com/erlang/rebar3/issues/2817 + #otp_version: ['20.3', '21.3', '22.3', '23.3'] + otp_version: ['21.3', '22.3', '23.3'] steps: - uses: actions/checkout@v3