Skip to content

Commit cd61d8b

Browse files
stick to OTP 26 (the same as ELP) (#59)
Summary: the same as WhatsApp/erlang-language-platform#38 Pull Request resolved: #59 Test Plan: Testing: https://github.com/ilya-klyuchnikov/eqwalizer/tree/otp-26 CI is green Reviewed By: jcpetruzza Differential Revision: D59750385 Pulled By: ilya-klyuchnikov fbshipit-source-id: 304405133888e514e96c603ad4708eb3c5aa967f
1 parent c7aaca4 commit cd61d8b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
name: Linux CI (OTP ${{matrix.otp}})
55
strategy:
66
matrix:
7-
otp: ['26.0', '25.3']
7+
otp: ['26.2']
88
steps:
99
- name: Checkout eqWAlizer
1010
uses: "actions/checkout@v3"
@@ -53,7 +53,7 @@ jobs:
5353
- name: Test eqwalizer
5454
run: 'cd eqwalizer && sbt test'
5555
- name: Upload eqwalizer.jar
56-
if: matrix.otp == '25.3'
56+
if: matrix.otp == '26.2'
5757
uses: "actions/upload-artifact@v3"
5858
with:
5959
name: eqwalizer.jar
@@ -65,7 +65,7 @@ jobs:
6565
name: MacOS CI (${{matrix.brew-otp-version}})
6666
strategy:
6767
matrix:
68-
brew-otp-version: ['26', '25']
68+
brew-otp-version: ['26']
6969
steps:
7070
- name: Checkout eqWAlizer
7171
uses: "actions/checkout@v3"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A type-checker for Erlang.
99

1010
## Using it with rebar3 projects
1111

12-
1. Use OTP 25
12+
1. Use OTP 26
1313
2. Download the `elp` binary for your system from https://github.com/WhatsApp/erlang-language-platform/releases
1414

1515
> On Mac you will probably get the following message when trying to run the executable the first time: "elp cannot be opened because the developer cannot be verified.".
@@ -45,7 +45,7 @@ Adding `eqwalizer_support` and `eqwalizer_rebar3`:
4545

4646
## Using it with non-rebar projects
4747

48-
1. Use OTP 25 (it will be detected automatically by eqWAlizer)
48+
1. Use OTP 26 (it will be detected automatically by eqWAlizer)
4949
2. Download the `elp` binary for your system from https://github.com/WhatsApp/erlang-language-platform/releases
5050
3. Write a `project.json` file describing your project, see below for the file structure.
5151
Ensure `eqwalizer_support` is added as a dependency, and that its `ebin` folder is reachable and populated

0 commit comments

Comments
 (0)