Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.

Add a new statement as skywalking-go is almost ready #171

Add a new statement as skywalking-go is almost ready

Add a new statement as skywalking-go is almost ready #171

Workflow file for this run

#
# Copyright 2022 SkyAPM org
#
# Licensed 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: PluginsTest
on:
pull_request:
push:
branches:
- master
jobs:
PluginsTest:
name: Plugin
runs-on: ubuntu-latest
env:
e2e_file: "plugins/http/test/http_plugin_test.yaml"
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: apache/skywalking-infra-e2e@main
with:
e2e-file: ${e2e_file}
- name: Show Container Logs
if: ${{ failure() }}
run: docker ps -a | grep -v CONTAINER | awk '{print $1}' | xargs -i docker logs {}
- name: Cleanup
if: ${{ failure() }}
run: e2e cleanup -c ${e2e_file}