fix context logic #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main CI | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/**' | |
- 'context/**' | |
- 'plugin/**' | |
- 'framework/**' | |
- 'functions/**' | |
- 'internal/**' | |
- 'runtime/**' | |
- 'test/**' | |
- 'go.mod' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
e2e_test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
name: E2E Tests | |
strategy: | |
matrix: | |
case: | |
- name: Bindings e2e test | |
e2e: "test/bindings/e2e.yaml" | |
- name: Pubsub e2e test | |
e2e: "test/pubsub/e2e.yaml" | |
- name: Sync HTTP e2e test | |
e2e: "test/sync-http/e2e.yaml" | |
- name: Sync Cloudevent e2e test | |
e2e: "test/sync-cloudevent/e2e.yaml" | |
- name: Declarative multiple functions with variables e2e test | |
e2e: "test/declarative/sync-http-variables/e2e.yaml" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install yq | |
env: | |
VERSION: v4.22.1 | |
BINARY: yq_linux_amd64 | |
run: | | |
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\ | |
tar xz && mv ${BINARY} /usr/local/bin/yq | |
- uses: apache/skywalking-infra-e2e@main | |
with: | |
e2e-file: ${{matrix.case.e2e}} | |
- name: Cleanup | |
if: ${{ failure() }} | |
run: e2e cleanup -c ${{matrix.case.e2e}} |