Skip to content

Commit

Permalink
Update to OpenRiak
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsumner committed Sep 24, 2024
1 parent 3654131 commit a55ca70
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 26 deletions.
28 changes: 10 additions & 18 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@ name: Erlang CI

on:
push:
branches: [ nhse-develop ]
branches:
- nhse-develop
- nhse-develop-3.2
- nhse-develop-3.4
pull_request:
branches: [ nhse-develop ]

branches:
- nhse-develop
- nhse-develop-3.2
- nhse-develop-3.4

jobs:

Expand All @@ -17,25 +22,12 @@ jobs:
strategy:
fail-fast: false
matrix:
otp: [22, 24, 25]
otp: [24, 26]
os: [ubuntu-latest]
# OTP lower than 23 does not run on ubuntu-latest (22.04), see
# https://github.com/erlef/setup-beam#compatibility-between-operating-system-and-erlangotp
exclude:
- otp: 22
os: ubuntu-latest
include:
- otp: 22
os: ubuntu-20.04

steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v2
- name: Install dependencies (Ubuntu)
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get -qq update
sudo apt-get -qq install libsnappy-dev libc6-dev
- uses: actions/checkout@v4
- name: Install Erlang/OTP
uses: erlef/setup-beam@v1
with:
Expand Down
16 changes: 8 additions & 8 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
{plugins, [{eqc_rebar, {git, "https://github.com/Quviq/eqc-rebar", {branch, "master"}}}]}.

{deps, [
{poolboy, {git, "https://github.com/nhs-riak/poolboy.git", {branch, "nhse-develop-3.2"}}},
{riak_sysmon, {git, "https://github.com/nhs-riak/riak_sysmon.git", {branch, "nhse-develop"}}},
{clique, {git, "https://github.com/nhs-riak/clique.git", {branch, "nhse-develop"}}},
{eleveldb, {git, "https://github.com/nhs-riak/eleveldb.git", {branch, "nhse-develop-3.2"}}},
{riak_ensemble, {git, "https://github.com/nhs-riak/riak_ensemble", {branch, "nhse-develop"}}},
{pbkdf2, {git, "https://github.com/nhs-riak/erlang-pbkdf2.git", {branch, "nhse-develop"}}},
{cluster_info, {git, "https://github.com/nhs-riak/cluster_info.git", {branch, "nhse-develop"}}},
{poolboy, {git, "https://github.com/OpenRiak/poolboy.git", {branch, "nhse-develop-3.2"}}},
{riak_sysmon, {git, "https://github.com/OpenRiak/riak_sysmon.git", {branch, "nhse-develop"}}},
{clique, {git, "https://github.com/OpenRiak/clique.git", {branch, "nhse-develop"}}},
{eleveldb, {git, "https://github.com/OpenRiak/eleveldb.git", {branch, "nhse-develop-3.2"}}},
{riak_ensemble, {git, "https://github.com/OpenRiak/riak_ensemble", {branch, "nhse-develop-3.2"}}},
{pbkdf2, {git, "https://github.com/OpenRiak/erlang-pbkdf2.git", {branch, "nhse-develop"}}},
{cluster_info, {git, "https://github.com/OpenRiak/cluster_info.git", {branch, "nhse-develop"}}},
{exometer_core, {git, "https://github.com/Feuerlabs/exometer_core.git", {tag, "1.6.1"}}},
{basho_stats, {git, "https://github.com/nhs-riak/basho_stats.git", {branch, "nhse-develop"}}}
{basho_stats, {git, "https://github.com/OpenRiak/basho_stats.git", {branch, "nhse-develop"}}}
]}.

{dialyzer, [{plt_apps, all_deps}]}.
Expand Down

0 comments on commit a55ca70

Please sign in to comment.