This commit is contained in:
2026-08-23 13:06:39 +02:00
parent b0a5447797
commit f227d054b8
18 changed files with 819 additions and 30 deletions

25
k8s-dvfs/Makefile Normal file
View File

@@ -0,0 +1,25 @@
# Use the Gradle wrapper by default; override with e.g. `make GRADLE=gradle ...`
# or `export GRADLE=gradle` (useful in pixi/conda environments).
GRADLE ?= ./gradlew
# Build the plugin
assemble:
$(GRADLE) assemble
clean:
rm -rf .nextflow*
rm -rf work
rm -rf build
$(GRADLE) clean
# Run plugin unit tests
test:
$(GRADLE) test
# Install the plugin into local nextflow plugins dir
install:
$(GRADLE) install
# Publish the plugin
release:
$(GRADLE) releasePlugin