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:14 UTC

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

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' ]