1
0
mirror of https://github.com/cs3org/reva.git synced 2025-04-18 13:44:12 +03:00

added new Make target for local revaplugins

This commit is contained in:
Jesse Geens 2025-03-26 12:04:50 +01:00 committed by Jesse Geens
parent bf89ab5b1f
commit 4a977d63ad
2 changed files with 10 additions and 0 deletions

View File

@ -55,6 +55,11 @@ gaia:
cernbox-revad: gaia
gaia build --with github.com/cernbox/reva-plugins --with github.com/cs3org/reva=$(shell pwd) --debug -o ./cmd/revad/revad
.PHONY: cernbox-revad-local
cernbox-revad-local: gaia
gaia build --with github.com/cernbox/reva-plugins=$(shell pwd)/../reva-plugins --with github.com/cs3org/reva=$(shell pwd) --debug -o ./cmd/revad/revad
.PHONY: cernbox-revad-ceph
cernbox-revad-ceph: cernbox-revad
gaia build --tags ceph --with github.com/cernbox/reva-plugins --with github.com/cs3org/reva=$(shell pwd) --debug -o ./cmd/revad/revad-ceph

View File

@ -0,0 +1,5 @@
Enhancement: add makefile option for local plugins
Added a new Make target that takes a local copy of reva-plugins
https://github.com/cs3org/reva/pull/5129