You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/11/23 10:10:28 UTC

[camel-kamelets] branch split-it-tests created (now 8fb7a895)

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

acosentino pushed a change to branch split-it-tests
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at 8fb7a895 SFTP Source Container it-test: Don't log container id

This branch includes the following new commits:

     new bd1d3c29 Split Makefile in multiple targets (AWS, Misc etc.)
     new 8fb7a895 SFTP Source Container it-test: Don't log container id

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kamelets] 01/02: Split Makefile in multiple targets (AWS, Misc etc.)

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch split-it-tests
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit bd1d3c292050ea084d331dfc218e5778852b006e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 23 11:09:26 2022 +0100

    Split Makefile in multiple targets (AWS, Misc etc.)
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 it-tests/Makefile | 34 ++++++++++++++++++++++++++++++++--
 1 file changed, 32 insertions(+), 2 deletions(-)

diff --git a/it-tests/Makefile b/it-tests/Makefile
index 28336809..f45c1245 100644
--- a/it-tests/Makefile
+++ b/it-tests/Makefile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-tests:
+all:
 	mkdir -p tests
 	cd aws/aws-s3/source/ && \
 	./aws-s3-log-it-test.sh $(camel-version)
@@ -38,6 +38,36 @@ tests:
 	cd misc/sftp/sink/ && \
 	./timer-sftp-it-test.sh $(camel-version)
 	./scripts/results.sh
+	rm -rf tests	
+aws:
+	mkdir -p tests
+	cd aws/aws-s3/source/ && \
+	./aws-s3-log-it-test.sh $(camel-version)
+	cd aws/aws-s3/sink/ && \
+	./timer-aws-s3-it-test.sh $(camel-version)
+	cd aws/aws-kinesis/source/ && \
+	./aws-kinesis-log-it-test.sh $(camel-version)
+	cd aws/aws-kinesis/sink/ && \
+	./timer-aws-kinesis-it-test.sh $(camel-version)
+	cd aws/aws-sqs/source/ && \
+	./aws-sqs-log-it-test.sh $(camel-version)
+	cd aws/aws-sqs/sink/ && \
+	./timer-aws-sqs-it-test.sh $(camel-version)
+	cd aws/aws-sqs-fifo/sink/ && \
+	./timer-aws-sqs-fifo-it-test.sh $(camel-version)
+	cd aws/aws-sns/sink/ && \
+	./timer-aws-sns-it-test.sh $(camel-version)
+	cd aws/aws-kinesis-firehose/sink/ && \
+	./timer-aws-kinesis-firehose-it-test.sh $(camel-version)
+	./scripts/results.sh
+	rm -rf tests
+misc:
+	mkdir -p tests
+	cd misc/sftp/source/ && \
+	./sftp-log-it-test.sh $(camel-version)
+	cd misc/sftp/sink/ && \
+	./timer-sftp-it-test.sh $(camel-version)
+	./scripts/results.sh
 	rm -rf tests
 	
-.PHONY: tests clean
+.PHONY: all aws misc clean


[camel-kamelets] 02/02: SFTP Source Container it-test: Don't log container id

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch split-it-tests
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 8fb7a895feea45cff66810992060a119d61ae12d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 23 11:09:51 2022 +0100

    SFTP Source Container it-test: Don't log container id
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 it-tests/misc/sftp/source/sftp-log-it-test.sh | 2 --
 1 file changed, 2 deletions(-)

diff --git a/it-tests/misc/sftp/source/sftp-log-it-test.sh b/it-tests/misc/sftp/source/sftp-log-it-test.sh
index 46560a83..e69eaca3 100755
--- a/it-tests/misc/sftp/source/sftp-log-it-test.sh
+++ b/it-tests/misc/sftp/source/sftp-log-it-test.sh
@@ -11,8 +11,6 @@ docker pull emberstack/sftp
 docker run -p 24:22 --name sftp -d emberstack/sftp 
 sftpid=`docker ps -aqf "name=sftp"`
 
-echo $sftpid
-
 jbang run -Dcamel.jbang.version=$camel_version camel@apache/camel run --local-kamelet-dir=../../../../kamelets/ sftp-log.yaml &
 
 sleep 10