Skip to content

Commit

Permalink
Update for new riak_core release
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsumner committed Dec 19, 2022
1 parent 899e261 commit 29994c9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
name: Erlang CI

on:
push:
branches: [ develop-3.0 ]
pull_request:
branches: [ develop-3.0 ]


jobs:

build:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
otp:
- "22.3.4.24"

container:
image: erlang:22.3.3
image: erlang:${{ matrix.otp }}

steps:
- uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: Run tests
run: rebar3 do xref, dialyzer, eunit
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v2
- name: Compile
run: ./rebar3 compile
- name: Run xref, dialyzer and eunit
run: ./rebar3 do xref, dialyzer, eunit
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used]}.

{deps, [
{riak_core, ".*", {git, "git://github.com/basho/riak_core.git", {tag, "riak_kv-3.0.9"}}}
{riak_core, ".*", {git, "git://github.com/basho/riak_core.git", {tag, "riak_kv-3.0.12"}}}
]}.

{plugins, [{eqc_rebar, {git, "https://github.com/Quviq/eqc-rebar", {branch, "master"}}}]}.

0 comments on commit 29994c9

Please sign in to comment.