diff --git a/.github/workflows/publish-collector-agent.yml b/.github/workflows/publish-collector-agent.yml index 5720b459..95c4f78f 100644 --- a/.github/workflows/publish-collector-agent.yml +++ b/.github/workflows/publish-collector-agent.yml @@ -10,7 +10,7 @@ permissions: env: REGISTRY_IMAGE: ghcr.io/${{ github.repository }}/collector-agent - TAG_NAME: ${{ github.head_ref || github.ref_name }} + TAG_NAME: v0.7 jobs: collector-agent: @@ -58,12 +58,11 @@ jobs: with: context: collector-agent platforms: ${{ matrix.platform }} - # tags: | - # ghcr.io/${{ github.repository }}/collector-agent:${{ inputs.tag }} - # ghcr.io/${{ github.repository }}/collector-agent:latest + tags: | + ghcr.io/${{ github.repository }}/collector-agent:${{ env.TAG_NAME }} github-token: ${{ secrets.GITHUB_TOKEN }} - labels: ${{ steps.meta.outputs.labels }} - outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true + # labels: ${{ steps.meta.outputs.labels }} + # outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true - name: Export digest run: | @@ -132,7 +131,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" diff --git a/.gitignore b/.gitignore index 50e51cc3..505fa967 100644 --- a/.gitignore +++ b/.gitignore @@ -84,4 +84,5 @@ x86 output config.nice.bat configure.bat -configure.js \ No newline at end of file +configure.js +*.cap \ No newline at end of file diff --git a/collector-agent/1.cap b/collector-agent/1.cap deleted file mode 100644 index bfd93f5b..00000000 Binary files a/collector-agent/1.cap and /dev/null differ diff --git a/collector-agent/makefile b/collector-agent/makefile index 34fe96a5..9b4cb0ea 100644 --- a/collector-agent/makefile +++ b/collector-agent/makefile @@ -1,5 +1,5 @@ -TAG ?=v0.6.4 +TAG ?=v0.7 .PHONY: default default: server ; diff --git a/common/CHANGES.md b/common/CHANGES.md index 96b3ebee..7fdfa940 100644 --- a/common/CHANGES.md +++ b/common/CHANGES.md @@ -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 diff --git a/common/readme.md b/common/readme.md index 67961361..8aa81a45 100644 --- a/common/readme.md +++ b/common/readme.md @@ -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 ```