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 26, 2024
1 parent 710411b commit 9592f2a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 21 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
6 changes: 3 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
{eunit_opts, [verbose]}.

{deps, [
{riak_pb, {git, "https://github.com/nhs-riak/riak_pb.git", {branch, "nhse-develop"}}},
{riak_pb, {git, "https://github.com/OpenRiak/riak_pb.git", {branch, "nhse-develop"}}},
{webmachine, {git, "https://github.com/webmachine/webmachine.git", {branch, "main"}}},
{mochiweb, {git, "https://github.com/nhs-riak/mochiweb.git", {branch, "nhse-develop-3.4"}}},
{riak_core, {git, "https://github.com/nhs-riak/riak_core.git", {branch, "nhse-develop-3.4"}}}
{mochiweb, {git, "https://github.com/OpenRiak/mochiweb.git", {branch, "nhse-develop-3.4"}}},
{riak_core, {git, "https://github.com/OpenRiak/riak_core.git", {branch, "nhse-develop-3.4"}}}
]}.

{profiles, [
Expand Down

0 comments on commit 9592f2a

Please sign in to comment.