8000 Bump Relx CI versions by ferd · Pull Request #928 · erlware/relx · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump Relx CI versions #928

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

Merged
merged 3 commits into from
Feb 27, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:

strategy:
matrix:
otp_version: [22, 23, 24]
os: [ubuntu-latest]
otp_version: [22, 23, 24, 25]
os: [ubuntu-20.04] # latest only runs >= 24.2

container:
image: erlang:${{ matrix.otp_version }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/shelltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:

strategy:
matrix:
# important to check a pre-23 version that still uses nodetool
# plus 23 once it is released
otp_version: [23.1]
os: [ubuntu-latest]
# TODO: make a batch of tests that runs on nodetool rather
# than the new connectivity mechanism
otp_version: [24, 25]
os: [ubuntu-latest] # latest only runs >= 24.2

steps:
- uses: actions/checkout@v2
- uses: gleam-lang/setup-erlang@v1.1.2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
# Cannot test OTP 21 due to https://bugs.erlang.org/browse/ERL-644 (see also https://github.com/elixir-lang/elixir/issues/7774)
otp_version: [22, 23, 24]
otp_version: [22, 23, 24, 25]
os: [windows-latest]

steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ erl_crash.dump
rebar
TEST-*
tags
*.swp
0