fix: fix pika exporter 336 version match nil and delete optional logs keyspace-stats-clock #412
Workflow file for this run
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: Tools_go_build | |
on: | |
push: | |
branches: [ "unstable", "3.5" , "4.0"] | |
paths: | |
- 'tools/**' | |
pull_request: | |
branches: [ "unstable", "3.5" , "4.0"] | |
paths: | |
- 'tools/**' | |
jobs: | |
build_pika_exporter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- name: Build | |
run: | | |
cd tools/pika_exporter && make -j | |
- name: Test | |
run: | | |
cd tools/pika_exporter && make -j | |
build_codis2pika: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- name: Build | |
run: | | |
cd tools/codis2pika && sh build.sh | |
- name: Test | |
run: | | |
cd tools/codis2pika && sh build.sh |