Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rebar3 and Erlang/OTP compatibility list #2918

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
image: erlang:${{ matrix.otp_version }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Compile
run: ./bootstrap
- name: CT tests
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Brew Version Check
run: brew --version
- name: Brew Cleanup
Expand All @@ -52,9 +52,7 @@ jobs:
- name: Debug Brew
run: brew doctor || true
- name: Install Erlang
#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
run: brew install erlang@${{ env.LATEST_OTP_RELEASE }}
- name: Compile
run: ./bootstrap
- name: CT tests
Expand All @@ -65,7 +63,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Erlang
run: choco install erlang
- name: Compile
Expand Down
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,27 @@ best experience you can get.

## Getting Started

### Compatibility between Rebar3 and Erlang/OTP

This list presents the known working version combos between Rebar3 and
Erlang/OTP. Always use the latest version your project can tolerate for latest
security fixes.

| Rebar3 | Erlang/OTP Support Range | Notes
|- |- | -
| 3.24.0 | 25-27 |
| 3.23.0 | 25-27 |
| 3.22.1 | 25-27 |
| 3.21.0 | 24-26 |
| 3.20.0 | 23-25 |
| 3.19.0 | 23-25 |
| 3.18.0 | 22-24 |
| 3.17.0 | 22-24 |
| 3.16.1 | 22-24 | Don't use 3.16.0, see https://ferd.ca/you-ve-got-to-upgrade-rebar3.html
| 3.15.2 | 19-23 | Don't use 3.15.0 or 3.15.1, see https://ferd.ca/you-ve-got-to-upgrade-rebar3.html
| 3.14.1 | 19-23 |
| 3.13.3 | 19-22 | Don't use 3.13.1 or 3.13.2, see https://ferd.ca/you-ve-got-to-upgrade-rebar3.html

A [getting started guide is maintained on the official documentation website](https://rebar3.org/docs/getting-started),
but installing rebar3 can be done by any of the ways described below

Expand Down Expand Up @@ -167,4 +188,3 @@ General rebar community resources and links can be found at
[rebar3.org/docs/about/about-us/#community](https://rebar3.org/docs/about/about-us/#community)

To contribute to rebar3, please refer to [CONTRIBUTING](CONTRIBUTING.md).

Loading