forked from aeraki-mesh/aeraki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from aeraki-mesh/master
Merge官方最新代码
- Loading branch information
Showing
501 changed files
with
13,777 additions
and
139,045 deletions.
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
35 changes: 25 additions & 10 deletions
35
.github/workflows/e2e-kafka-zookeeper.yaml → ...b/workflows/e2e-metaprotocol-gateway.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,55 @@ | ||
--- | ||
name: e2e-kafka-zookeeper | ||
name: e2e-metaprotocolgateway | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- "master" | ||
- "release/v*" | ||
paths-ignore: | ||
- "**/*.png" | ||
- "**/*.md" | ||
pull_request: | ||
branches: | ||
- "master" | ||
- "release/v*" | ||
paths-ignore: | ||
- "**/*.png" | ||
- "**/*.md" | ||
|
||
env: | ||
ISTIO_VERSION: 1.10.0 | ||
ISTIO_VERSION: 1.16.5 | ||
ISTIO_NAMESPACE: istio-system | ||
SCRIPTS_DIR: test/e2e/scripts | ||
COMMON_DIR: test/e2e/common | ||
|
||
AERAKI_IMG_PULL_POLICY: Never | ||
jobs: | ||
test: | ||
TestGatewayVersionRouting: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
strategy: | ||
fail-fast: true | ||
name: e2e-test | ||
name: TestGatewayVersionRouting | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16 | ||
go-version: 1.19 | ||
- name: Install dependencies | ||
run: | | ||
go version | ||
go get golang.org/x/tools/cmd/goimports | ||
go install golang.org/x/tools/cmd/goimports@latest | ||
- name: build docker | ||
run: make docker-build-e2e | ||
- name: Prepare envrionment | ||
run: bash ${SCRIPTS_DIR}/pre.sh | ||
- name: Install Minikube | ||
run: bash ${SCRIPTS_DIR}/minikube.sh start | ||
- name: Install Istio | ||
run: bash ${SCRIPTS_DIR}/istio.sh -y -f ${COMMON_DIR}/istio-config.yaml | ||
run: bash ${SCRIPTS_DIR}/istio.sh | ||
- name: Install aeraki | ||
run: bash ${SCRIPTS_DIR}/aeraki.sh | ||
- name: test | ||
run: make e2e-kafka-zookeeper | ||
run: go test -v github.com/aeraki-mesh/aeraki/test/e2e/metaprotocolgateway/ -run TestThriftRouter |
Oops, something went wrong.