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

pcongiusti pushed a commit to branch release-1.9.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/release-1.9.x by this push:
     new d04d80da5 fix(ci): nightly release workaround
d04d80da5 is described below

commit d04d80da58af5e3aaa82fb734a4856eebd149316
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Thu Sep 8 09:49:53 2022 +0200

    fix(ci): nightly release workaround
    
    Ref #3613
---
 .github/actions/e2e-common/action.yml | 40 +++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/.github/actions/e2e-common/action.yml 
b/.github/actions/e2e-common/action.yml
new file mode 100644
index 000000000..772d6d601
--- /dev/null
+++ b/.github/actions/e2e-common/action.yml
@@ -0,0 +1,40 @@
+# ---------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ---------------------------------------------------------------------------
+
+name: e2e-common
+description: 'End-to-End tests for build use-cases'
+
+runs:
+  using: "composite"
+
+  steps:
+
+  - id: prepare-env
+    name: Prepare Test Environment
+    uses: ./.github/actions/kamel-prepare-env
+
+  - name: Cache modules
+    uses: actions/cache@v1
+    with:
+      path: ~/go/pkg/mod
+      key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
+      restore-keys: |
+        ${{ runner.os }}-go-
+
+  - name: Test
+    shell: bash
+    run: make

Reply via email to