feat: add kitexutil methods for the convience to fetch rpc informatio… #195
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: Tests | |
on: [ push, pull_request ] | |
jobs: | |
unit-scenario-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.17' | |
- name: Unit Test | |
run: go test -gcflags=-l -race -covermode=atomic -coverprofile=coverage.txt ./... | |
- name: Scenario Tests | |
run: | | |
cd .. | |
rm -rf kitex-tests | |
git clone https://github.com/cloudwego/kitex-tests.git | |
cd kitex-tests | |
./run.sh ${{github.workspace}} | |
cd ${{github.workspace}} | |
- name: Codecov | |
run: bash <(curl -s https://codecov.io/bash) | |
benchmark-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.17' | |
- name: Benchmark | |
run: go test -gcflags='all=-N -l' -bench=. -benchmem -run=none ./... | |
compatibility-test: | |
strategy: | |
matrix: | |
go: [ 1.15, 1.16, 1.18, 1.19.12, 1.20.7 ] | |
os: [ X64, ARM64 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Unit Test | |
run: go test -gcflags=-l -race -covermode=atomic ./... | |
codegen-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.17' | |
- name: Prepare | |
run: | | |
go install github.com/cloudwego/thriftgo@main | |
go install ./tool/cmd/kitex | |
LOCAL_REPO=$(pwd) | |
cd .. | |
git clone https://github.com/cloudwego/kitex-tests.git | |
cd kitex-tests/codegen | |
go mod init codegen-test | |
go mod edit -replace=github.com/apache/thrift=github.com/apache/[email protected] | |
go mod edit -replace github.com/cloudwego/kitex=${LOCAL_REPO} | |
go mod tidy | |
bash -version | |
bash ./codegen_install_check.sh | |
- name: CodeGen | |
run: | | |
cd ../kitex-tests/codegen | |
tree | |
bash ./codegen_run.sh | |
windows-test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20" | |
- name: Windows compatibility test | |
run: go test -run=^$ ./... |