blob: 114981c113b0f0591d90ef63f99c05f520dda788 [file] [log] [blame]
#
# 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: SkyWalking Infra E2E Dockerized
description: End-to-End Tesing framework that help to set up, verify E2E tests.
author: Apache SkyWalking
inputs:
e2e-file:
description: File path of e2e file
required: true
runs:
using: "composite"
steps:
- shell: bash
run: make -C $GITHUB_ACTION_PATH docker
- shell: bash
run: |
printenv > env.list
docker run -v $GITHUB_WORKSPACE:$GITHUB_WORKSPACE \
-v /var/run/docker.sock:/var/run/docker.sock \
-w $GITHUB_WORKSPACE --env-file env.list \
docker.io/apache/e2e:latest run -c "${{ inputs.e2e-file }}"