kezhenxu94 commented on code in PR #224: URL: https://github.com/apache/skywalking-go/pull/224#discussion_r2095439853
########## .github/workflows/e2e.yaml: ########## @@ -0,0 +1,46 @@ +# 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 + +on: + pull_request: + +jobs: + E2E: + name: Basic function + ${{ matrix.case.name }} reporter + runs-on: ubuntu-latest + timeout-minutes: 90 + strategy: + matrix: + case: + - name: gRPC + path: test/e2e/case/grpc/e2e.yaml + - name: Kafka + path: test/e2e/case/kafka/e2e.yaml + steps: + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.19 + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build SkyWalking Go agent + run: make -C test/e2e build + - name: Run E2E Tests + uses: apache/skywalking-infra-e2e@7e4b5b68716fdb7b79b21fa8908f9db497e1b115 + with: + e2e-file: ${{ matrix.case.path }} Review Comment: We have conflicts between the Go versions of infra-e2e and the project itself, for now, please split this workflow to 2 jobs, one to build the binary and upload to artifacts, the other to download it and use it in the E2E tests -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org