From b9643d43df1ec05b6f929e4710fded4db824da2f Mon Sep 17 00:00:00 2001 From: Martin Sumner Date: Fri, 25 Oct 2024 16:59:29 +0100 Subject: [PATCH] Update for OpenRiak --- .github/workflows/erlang.yml | 8 ++------ README.md | 2 +- rebar.config | 4 ++-- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index 17991f97..9bb992f7 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -3,14 +3,10 @@ name: Erlang CI on: push: branches: - - nhse-develop - - nhse-develop-3.2 - - nhse-develop-3.4 + - openriak-3.4 pull_request: branches: - - nhse-develop - - nhse-develop-3.2 - - nhse-develop-3.4 + - openriak-3.4 jobs: diff --git a/README.md b/README.md index f5b8efae..5ff856ab 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Introduction -[![Build Status](https://github.com/martinsumner/leveled/actions/workflows/erlang.yml/badge.svg?branch=develop-3.1)](https://github.com/martinsumner/leveled/actions) +![Leveled OpenRiak Status](https://github.com/OpenRiak/leveled/actions/workflows/erlang.yml/badge.svg?branch=openriak-3.4) Leveled is a simple Key-Value store based on the concept of Log-Structured Merge Trees, with the following characteristics: diff --git a/rebar.config b/rebar.config index 122e1cdd..82b96e1e 100644 --- a/rebar.config +++ b/rebar.config @@ -27,8 +27,8 @@ ]}. {deps, [ - {lz4, ".*", {git, "https://github.com/OpenRiak/erlang-lz4", {branch, "nhse-develop-3.4"}}}, - {zstd, ".*", {git, "https://github.com/OpenRiak/zstd-erlang", {branch, "nhse-develop"}}} + {lz4, ".*", {git, "https://github.com/OpenRiak/erlang-lz4", {branch, "openriak-3.4"}}}, + {zstd, ".*", {git, "https://github.com/OpenRiak/zstd-erlang", {branch, "openriak-3.2"}}} ]}. {ct_opts, [{dir, ["test/end_to_end"]}]}.