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:19:33 UTC

[camel-kamelets] branch main updated (66c29ad3 -> 01421917)

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

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


    from 66c29ad3 Updated CHANGELOG.md
     new 9e49663a Split Makefile in multiple targets (AWS, Misc etc.)
     new 01421917 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.


Summary of changes:
 it-tests/Makefile                             | 34 +++++++++++++++++++++++++--
 it-tests/misc/sftp/source/sftp-log-it-test.sh |  2 --
 2 files changed, 32 insertions(+), 4 deletions(-)


[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 main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 9e49663a3bfd77b879ad0cbab174785a2e6cc6f9
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 main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 01421917224bdee246a99ae1c033108b25c46ad1
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