You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by va...@apache.org on 2021/02/08 22:32:13 UTC

[camel-kafka-connector] branch gh-actions-tests updated (dd7275e -> 753a6e5)

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

valdar pushed a change to branch gh-actions-tests
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.


    omit dd7275e  Changed volume mounting strategy
    omit caa84e8  GithubAction registry test
     new 753a6e5  GithubAction registry initial test

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (dd7275e)
            \
             N -- N -- N   refs/heads/gh-actions-tests (753a6e5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .github/workflows/ci-build.yml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)


[camel-kafka-connector] 01/01: GithubAction registry initial test

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

valdar pushed a commit to branch gh-actions-tests
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 753a6e5c7cac144f539b73c4600629460ca61ef2
Author: Andrea Tarocchi <an...@gmail.com>
AuthorDate: Mon Feb 8 22:59:52 2021 +0100

    GithubAction registry initial test
---
 .github/workflows/ci-build.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml
index 27ad769..96cb085 100644
--- a/.github/workflows/ci-build.yml
+++ b/.github/workflows/ci-build.yml
@@ -25,13 +25,23 @@ on:
     branches:
       - master
       - camel-master
+      - gh-actions-tests
   pull_request:
     branches:
       - master
       - camel-master
+      - gh-actions-tests
 jobs:
   build:
     runs-on: ubuntu-latest
+    services:
+      registry:
+        image: registry
+        ports:
+          - 5000:5000
+        options: --restart always
+        volumes:
+          - /tmp/registry:/var/lib/registry
     strategy:
       matrix:
         java: [ '8', '11', '14' ]