Skip to content

Commit 9f58735

Browse files
authored
Merge pull request #52 from zmstone/251216-build-on-otp-28
251216 build on otp 28
2 parents 9ecc2c5 + 0b3c609 commit 9f58735

File tree

5 files changed

+7
-21
lines changed

5 files changed

+7
-21
lines changed

.github/workflows/run_test_case.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88

99
container:
10-
image: ghcr.io/emqx/emqx-builder/5.3-9:1.15.7-26.2.5-3-ubuntu22.04
10+
image: ghcr.io/emqx/emqx-builder/6.0-6:1.19.1-28.2-1-ubuntu22.04
1111

1212
steps:
13-
- uses: actions/checkout@v4.2.2
13+
- uses: actions/checkout@v5.0.0
1414

1515
- name: Compile
1616
run: |

rebar.config

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@
4040
export_all,
4141
no_inline_list_funcs]},
4242
{deps, [
43-
{eunit_formatters, "~> 0.3"},
44-
{proper, {git, "https://github.com/proper-testing/proper.git", {tag, "v1.4"}}},
45-
{meck, "0.9.2"}
43+
{proper, {git, "https://github.com/proper-testing/proper.git", {tag, "v1.5.0"}}},
44+
{meck, "1.1.0"}
4645
]}
4746
]}
4847
]}.

rebar.config.script

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/gen_rpc.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ eval_everywhere(Nodes, M, F, A, SendTimeout) ->
105105
yield(Key) ->
106106
gen_rpc_client:yield(Key).
107107

108-
-spec nb_yield(tuple()) -> {value, term()} | {badrpc, term()}.
108+
-spec nb_yield(tuple()) -> {value, term()} | {badrpc, term()} | timeout.
109109
nb_yield(Key) ->
110110
gen_rpc_client:nb_yield(Key).
111111

112-
-spec nb_yield(tuple(), timeout()) -> {value, term()} | {badrpc, term()}.
112+
-spec nb_yield(tuple(), timeout()) -> {value, term()} | {badrpc, term()} | timeout.
113113
nb_yield(Key, Timeout) ->
114114
gen_rpc_client:nb_yield(Key, Timeout).
115115

test/auth_SUITE.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ build_old_rel(Tag, Config) ->
320320
cd gen_rpc &&
321321
git checkout '" ++ atom_to_list(Tag) ++ "' &&
322322
sed -i 's/^\s*, {fail_if_no_peer_cert, true}/%&/' include/ssl.hrl &&
323+
sed -i 's|{snabbkaffe,.*}|{snabbkaffe, {git, \"https://github.com/kafka4beam/snabbkaffe\", {tag, \"1.0.10\"}}}|' rebar.config &&
323324
env REBAR_PROFILE=default rebar3 compile &&
324325
echo 'DONE'"),
325326
case lists:suffix("DONE\n", Ret) of

0 commit comments

Comments
 (0)