From 2cd53410bcf383e876478a7a521de3575a945ae6 Mon Sep 17 00:00:00 2001 From: Badlop Date: Thu, 23 May 2024 19:00:15 +0200 Subject: [PATCH] Runtime: Avoid testing with OTP 27 + rebar2, because Jose has warnings_as_errors and we can't disable that option in rebar2 using overrides --- .github/workflows/runtime.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index 36c7aaade..4c5a6bbfb 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -33,6 +33,9 @@ jobs: matrix: otp: ['20', '25', '26', '27'] rebar: ['rebar', 'rebar3'] + exclude: + - otp: '27' + rebar: 'rebar' runs-on: ubuntu-22.04 container: image: erlang:${{ matrix.otp }}