From 77047e42d7e09aae657c287ed5ed340d26fec5c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=99=9F=20Wu=20Sheng?= Date: Wed, 3 Nov 2021 13:43:32 +0800 Subject: [PATCH] Clear e2e v1 GHA control file (#8059) --- .github/actions/e2e-test/action.yml | 54 ----------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/actions/e2e-test/action.yml diff --git a/.github/actions/e2e-test/action.yml b/.github/actions/e2e-test/action.yml deleted file mode 100644 index 8c3faabc25..0000000000 --- a/.github/actions/e2e-test/action.yml +++ /dev/null @@ -1,54 +0,0 @@ -# -# 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: 'Run E2E Test' -description: 'Common steps when running an E2E Test' -inputs: - test_class: - description: 'The e2e test class name' - required: true -runs: - using: "composite" - steps: - - name: Cache local Maven repository - uses: actions/cache@v2 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - name: Check License - uses: apache/skywalking-eyes@a63f4afcc287dfb3727ecc45a4afc55a5e69c15f - - name: Build Docker Image - shell: bash - env: - SKIP_TEST: "true" - run: | - echo "::group::Build Docker Image" - # Retry one more time due to frequent "maven connection reset" - make docker || make docker - echo "::endgroup::" - - name: Run E2E Test - shell: bash - run: | - echo "::group::Build E2E Test Modules" - ./mvnw -q -B -f test/e2e/pom.xml clean install - echo "::endgroup::" - echo "::group::Run E2E Test ${{ inputs.test_class }}" - ./mvnw -q --batch-mode -f test/e2e/pom.xml -am -DfailIfNoTests=false test -Dtest=${{ inputs.test_class }} - echo "::endgroup::" -- GitLab