Skip to content

Commit

Permalink
Merge pull request #2893 from ferd/bump-to-otp-27
Browse files Browse the repository at this point in the history
  • Loading branch information
ferd authored Jun 3, 2024
2 parents 63e4e1f + e9404a8 commit faf0628
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Common Test
on: [pull_request, push]

env:
LATEST_OTP_RELEASE: 26
LATEST_OTP_RELEASE: 27

jobs:
linux:
Expand All @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
otp_version: [24, 25, 26]
otp_version: [25, 26, 27]
os: [ubuntu-latest]

container:
Expand Down Expand Up @@ -52,7 +52,9 @@ jobs:
- name: Debug Brew
run: brew doctor || true
- name: Install Erlang
run: brew install erlang@${{ env.LATEST_OTP_RELEASE }}
#run: brew install erlang@${{ env.LATEST_OTP_RELEASE }}
# fall back to OTP-26 since OTP 27.0 doesn't build on homebrew due to manpages issues
run: brew install erlang@26
- name: Compile
run: ./bootstrap
- name: CT tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: erlef/setup-beam@v1
with:
otp-version: '24'
otp-version: '25'
- name: Compile
run: ./bootstrap
- name: CT tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: erlef/setup-beam@v1
with:
otp-version: '24'
otp-version: '25'
- name: Compile
run: ./bootstrap
- name: CT tests
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rebar3

[![Build Status](https://github.com/erlang/rebar3/workflows/Common%20Test/badge.svg)](https://github.com/erlang/rebar3/actions?query=branch%3Amaster+workflow%3A"Common+Test") [![Erlang Versions](https://img.shields.io/badge/Supported%20Erlang%2FOTP-24.0%20to%2026.0-blue)](http://www.erlang.org)
[![Build Status](https://github.com/erlang/rebar3/workflows/Common%20Test/badge.svg)](https://github.com/erlang/rebar3/actions?query=branch%3Amaster+workflow%3A"Common+Test") [![Erlang Versions](https://img.shields.io/badge/Supported%20Erlang%2FOTP-25.0%20to%2027.0-blue)](http://www.erlang.org)

1. [What is Rebar3?](#what-is-rebar3)
2. [Why Rebar3?](#why-rebar3)
Expand Down Expand Up @@ -94,7 +94,7 @@ by [Erlang Solutions](https://www.erlang-solutions.com/resources/download.html),
but be sure to choose the "Standard" download option or you'll have issues building
projects.

Do note that if you are planning to work with multiple Erlang versions on the same machine, you will want to build Rebar3 with the oldest one of them. The 3 newest major Erlang releases are supported at any given time: if the newest version is OTP-26, building with versions as old as OTP-24 will be supported, and produce an executable that will work with those that follow.
Do note that if you are planning to work with multiple Erlang versions on the same machine, you will want to build Rebar3 with the oldest one of them. The 3 newest major Erlang releases are supported at any given time: if the newest version is OTP-27, building with versions as old as OTP-25 will be supported, and produce an executable that will work with those that follow.

## Documentation

Expand Down

0 comments on commit faf0628

Please sign in to comment.