This is an automated email from the ASF dual-hosted git repository. nickva pushed a commit to tag 1.1.5 in repository https://gitbox.apache.org/repos/asf/couchdb-jiffy.git
commit 738cce800de50bafc740c1d96051ed06cddbb500 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 | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f811b1..900d458 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - otp_version: [20,23,26,27,28] + otp_version: [20,23,26,27,28,29] os: [ubuntu-latest] rebar: [rebar, rebar3] @@ -65,10 +65,15 @@ jobs: run: | git config --global core.autocrlf false git config --global core.eol lf - - uses: actions/checkout@v4 - - name: install rebar3 - run: | - choco install rebar3 + - 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' - name: make check run: | $path = vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -nologo -nocolor -property installationPath
