Skip to content

Commit 53ec7fe

Browse files
committed
Update riak_core release
1 parent a4a17fc commit 53ec7fe

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

.github/workflows/erlang.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
11
name: Erlang CI
2-
2+
33
on:
44
push:
55
branches: [ develop-3.0 ]
66
pull_request:
77
branches: [ develop-3.0 ]
88

9+
910
jobs:
1011

1112
build:
1213

1314
runs-on: ubuntu-latest
1415

16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
otp:
20+
- "22.3.4.24"
21+
1522
container:
16-
image: erlang:22.3.3
23+
image: erlang:${{ matrix.otp }}
1724

1825
steps:
19-
- uses: actions/checkout@v2
20-
- name: Compile
21-
run: rebar3 compile
22-
- name: Run tests
23-
run: rebar3 do xref, dialyzer, eunit
26+
- uses: lukka/get-cmake@latest
27+
- uses: actions/checkout@v2
28+
- name: Compile
29+
run: ./rebar3 compile
30+
- name: Run xref, dialyzer and eunit
31+
run: ./rebar3 do xref, dialyzer, eunit

.rebar/erlcinfo

-459 Bytes
Binary file not shown.

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{deps, [
1111
{riak_pb, {git, "https://github.com/basho/riak_pb.git", {tag, "3.0.10"}}},
1212
{webmachine, {git, "https://github.com/webmachine/webmachine.git", {tag, "1.11.1"}}},
13-
{riak_core, {git, "https://github.com/basho/riak_core.git", {tag, "riak_kv-3.0.10"}}},
13+
{riak_core, {git, "https://github.com/basho/riak_core.git", {tag, "riak_kv-3.0.12"}}},
1414
{mochiweb, {git, "https://github.com/basho/mochiweb.git", {tag, "2.12.1+riak.3.0.4"}}}
1515
]}.
1616

0 commit comments

Comments
 (0)