Skip to content

Commit

Permalink
Merge pull request #1068 from zouyx/feature/fixIntegration
Browse files Browse the repository at this point in the history
Fix: integration test in Action
  • Loading branch information
AlexStocks committed Mar 6, 2021
2 parents f1f81eb + b8c51a7 commit 698908d
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 1,874 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: gofmt
run: |
go fmt ./... && git checkout -- go.mod && git status && [[ -z `git status -s` ]]
go fmt ./... && git status && [[ -z `git status -s` ]]
# diff -u <(echo -n) <(gofmt -d -s .)
- name: Install go ci lint
Expand All @@ -69,9 +69,9 @@ jobs:
run: |
make verify
# - name: Integrate Test
# run: |
# chmod +x integrate_test.sh && ./integrate_test.sh ${{github.event.pull_request.head.repo.full_name}} ${{github.event.pull_request.head.sha}}
- name: Integrate Test
run: |
chmod +x integrate_test.sh && ./integrate_test.sh ${{github.event.pull_request.head.repo.full_name}} ${{github.event.pull_request.head.sha}}
- name: Post Coverage
run: bash <(curl -s https://codecov.io/bash)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ If you are willing to do some code contributions and document contributions to [

## Community

If u want to communicate with our community, pls scan the following [dubbobo Ding-Ding QR code](https://mmbiz.qpic.cn/mmbiz_jpg/yvBJb5IiafvnHVBdtia30dxA2hKotr9DEckWsZ7aOJcDWDaSVMGwLmYv8GRgIQtqb4C2svicp8nVkMmGy7yKC5tyA/640?wx_fmt=jpeg&tp=webp&wxfrom=5&wx_lazy=1&wx_co=1) or search our commnity DingDing group code 31363295.
If u want to communicate with our community, pls scan the following dubbobo Ding-Ding QR code or search our commnity DingDing group code 31363295.

<div>
<table>
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/apache/dubbo-go

go 1.13
go 1.15

require (
github.com/NYTimes/gziphandler v1.1.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion test/integrate/dubbo/go-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ RUN test ${PR_ORIGIN_REPO} && go mod edit -replace=github.com/apache/dubbo-go=g

ENV GO111MODULE on

RUN go install github.com/apache/dubbo-go/test/integrate/dubbo/go-client
RUN go mod tidy && go install github.com/apache/dubbo-go/test/integrate/dubbo/go-client

CMD go-client
5 changes: 0 additions & 5 deletions test/integrate/dubbo/go-client/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
module github.com/apache/dubbo-go/test/integrate/dubbo/go-client

require (
github.com/apache/dubbo-go v1.5.6-rc1.0.20210220143153-9c8fc77f0381
github.com/apache/dubbo-go-hessian2 v1.8.2
)

go 1.13
928 changes: 0 additions & 928 deletions test/integrate/dubbo/go-client/go.sum

This file was deleted.

2 changes: 1 addition & 1 deletion test/integrate/dubbo/go-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ RUN test ${PR_ORIGIN_REPO} && go mod edit -replace=github.com/apache/dubbo-go=g

ENV GO111MODULE on

RUN go install github.com/apache/dubbo-go/test/integrate/dubbo/go-server
RUN go mod tidy && go install github.com/apache/dubbo-go/test/integrate/dubbo/go-server

CMD go-server
5 changes: 0 additions & 5 deletions test/integrate/dubbo/go-server/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
module github.com/apache/dubbo-go/test/integrate/dubbo/go-server

require (
github.com/apache/dubbo-go v1.5.6-rc1.0.20210220143153-9c8fc77f0381
github.com/apache/dubbo-go-hessian2 v1.8.2
)

go 1.13
928 changes: 0 additions & 928 deletions test/integrate/dubbo/go-server/go.sum

This file was deleted.

0 comments on commit 698908d

Please sign in to comment.