Skip to content

Commit

Permalink
fix doc and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
eeliu committed Oct 10, 2024
1 parent 5ed2744 commit 66f8046
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-collector-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ name: publish-collector-agent
on:
release:
types: [created]
workflow_dispatch:

permissions:
contents: write
packages: write

env:
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}/collector-agent
TAG_NAME: ${{ github.head_ref || github.ref_name }}
TAG_NAME: v0.7

jobs:
collector-agent:
Expand Down Expand Up @@ -58,10 +59,8 @@ jobs:
with:
context: collector-agent
platforms: ${{ matrix.platform }}
# tags: |
# ghcr.io/${{ github.repository }}/collector-agent:${{ inputs.tag }}
# ghcr.io/${{ github.repository }}/collector-agent:latest
github-token: ${{ secrets.GITHUB_TOKEN }}
tags: ${{ env.TAG_NAME }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true

Expand Down Expand Up @@ -119,6 +118,7 @@ jobs:
Release-Collector-agent:
runs-on: ubuntu-latest
if: github.event_name == 'release'
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
Expand All @@ -132,7 +132,7 @@ jobs:
id: release-ca
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goversion: "https://dl.google.com/go/go1.18.10.linux-amd64.tar.gz"
goversion: 1.19
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "collector-agent"
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,5 @@ x86
output
config.nice.bat
configure.bat
configure.js
configure.js
*.cap
Binary file removed collector-agent/1.cap
Binary file not shown.
2 changes: 1 addition & 1 deletion collector-agent/makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

TAG ?=v0.6.4
TAG ?=v0.7

.PHONY: default
default: server ;
Expand Down
2 changes: 1 addition & 1 deletion common/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.6.0
## v0.6.0 2024-10-10
- refactor span json protocol
- add async api
- data structure change: multiple map to list
Expand Down
2 changes: 1 addition & 1 deletion common/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

```shell
$ cmake -DWITH_TEST_CASE=1 -DWITH_CODECOVERAGE=1 -DCMAKE_BUILD_TYPE=Debug ..
$ ./bin/TestCommon --gtest_filter=node.wakeTrace
$ ./bin/TestCommon
```

0 comments on commit 66f8046

Please sign in to comment.