From 42993111f0bde1fb2d94cf85c880329edf4ec063 Mon Sep 17 00:00:00 2001 From: Till Englert Date: Fri, 13 Sep 2024 15:12:41 +0200 Subject: [PATCH] Fix numbering in gh-pages: Contribution instructions --- contributing/setup/index.html | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/contributing/setup/index.html b/contributing/setup/index.html index e0b16a5..f74b7fd 100644 --- a/contributing/setup/index.html +++ b/contributing/setup/index.html @@ -670,25 +670,19 @@

Launch it with Nextflow

To test with Nextflow for development purpose:

  1. Clone the Nextflow repo into a sibling directory
  2. -
cd .. && git clone https://github.com/nextflow-io/nextflow
 cd nextflow && ./gradlew exportClasspath
 
-
  1. Append the following line to the settings.gradle in this project:
  2. -
includeBuild('../nextflow')
 
-
  1. Compile the plugin code
  2. -
./gradlew compileGroovy
 
-
  1. Run nextflow with this command:
  2. -
./launch.sh run -plugins nf-co2footprint <script/pipeline name> [pipeline params]
 
+

Alternative: Launch without a local Nextflow build

The plugin can be tested without using a local Nextflow build using the following steps:

@@ -698,15 +692,13 @@

Alternative: Launch w

  1. Compile and install the plugin code
  2. -
./gradlew compileGroovy
 make install
 
-
  1. Run nextflow with this command, specifying the plugin version:
  2. -
nextflow run -plugins nf-co2footprint@1.0.0-beta <script/pipeline name> [pipeline params]
 
+

Compiling and running tests

To compile and run the tests use the following command:

./gradlew check