You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/03/30 12:33:10 UTC

[camel-quarkus-examples] branch master updated: Add skipTests arg to package steps in file-bindy-ftp since waiting for containers to start slows the build workflow down

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 9e573ae  Add skipTests arg to package steps in file-bindy-ftp since waiting for containers to start slows the build workflow down
9e573ae is described below

commit 9e573ae7aa202f0e72e58222c39c76709c00a899
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Mar 30 13:32:43 2021 +0100

    Add skipTests arg to package steps in file-bindy-ftp since waiting for containers to start slows the build workflow down
---
 file-bindy-ftp/README.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/file-bindy-ftp/README.adoc b/file-bindy-ftp/README.adoc
index 95e6c9c..d42b9bb 100644
--- a/file-bindy-ftp/README.adoc
+++ b/file-bindy-ftp/README.adoc
@@ -83,7 +83,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_
 
 [source,shell]
 ----
-$ mvn clean package
+$ mvn clean package -DskipTests
 $ java -jar target/quarkus-app/quarkus-run.jar
 ----
 
@@ -96,7 +96,7 @@ To prepare a native executable using GraalVM, run the following command:
 
 [source,shell]
 ----
-$ mvn clean package -Pnative
+$ mvn clean package -DskipTests -Pnative
 $ ./target/*-runner
 ----