chore: remove redundant log output (#36)
This commit is contained in:
parent
52ce27d397
commit
2f93d1d029
|
@ -7,6 +7,7 @@ on:
|
|||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
REGISTRY_DOCKERHUB: docker.io
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
jobs:
|
||||
|
@ -58,3 +59,33 @@ jobs:
|
|||
labels: ${{ steps.meta.outputs.labels }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
||||
image-dockerhub:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3.0.0
|
||||
- name: Setup Docker buildx
|
||||
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
|
||||
- name: Log into registry ${{ env.REGISTRY_DOCKERHUB }}
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
||||
with:
|
||||
registry: ${{ env.REGISTRY_DOCKERHUB }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.DOCKER_HUB_PUBLISH_SECRETS }}
|
||||
- name: Extract Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
||||
with:
|
||||
images: ${{ env.REGISTRY_DOCKERHUB }}/${{ env.IMAGE_NAME }}
|
||||
- name: Build and push Docker image
|
||||
id: build-and-push
|
||||
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
|
||||
with:
|
||||
context: .
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
|
|
@ -256,7 +256,7 @@ func (r *simpleTestCaseRunner) RunTestCase(testcase *testing.TestCase, dataConte
|
|||
return
|
||||
}
|
||||
if err = expectInt(testcase.Name, testcase.Expect.StatusCode, resp.StatusCode); err != nil {
|
||||
err = fmt.Errorf("error is: %v\n%s", err, string(responseBodyData))
|
||||
err = fmt.Errorf("error is: %v", err)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,6 @@ func (s *server) Run(ctx context.Context, task *TestTask) (reply *HelloReply, er
|
|||
for key, val := range oldEnv {
|
||||
os.Setenv(key, val)
|
||||
}
|
||||
fmt.Println(reply, err)
|
||||
}()
|
||||
|
||||
switch task.Kind {
|
||||
|
|
Loading…
Reference in New Issue