This is an automated email from the ASF dual-hosted git repository. nickva pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/couchdb-jiffy.git
commit 6a6ccd4fb8e216f38265bc88207d0f1421fc5aa4 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Fri Jun 12 18:38:05 2026 -0400 Add OTP 29 support. Fix beam Windows 2025 CI. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8c89cb..db347dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - otp_version: [21,23,26,27,28] + otp_version: [21,23,26,27,28,29] os: [ubuntu-latest] rebar: [rebar, rebar3] @@ -135,6 +135,10 @@ jobs: git config --global core.eol lf - uses: actions/checkout@v6 - uses: erlef/setup-beam@v1 + # New runner images report win25-vs2026 and + # setup-beam cannot map (yet), so override for now + env: + ImageOS: ${{ matrix.os == 'windows-2025' && 'win25' || 'win22' }} with: otp-version: '27' rebar3-version: '3.23'
