We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e04aef commit e371be2Copy full SHA for e371be2
1 file changed
.github/workflows/perf_clickhouse.yaml
@@ -116,6 +116,12 @@ jobs:
116
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117
run: echo "${GH_TOKEN}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
118
119
+ - name: Build and install px CLI
120
+ run: |
121
+ bazel build //src/pixie_cli:px
122
+ install -m 0755 bazel-bin/src/pixie_cli/px_/px /usr/local/bin/px
123
+ px version
124
+
125
- name: Run clickhouse-export perf
126
env:
127
PX_API_KEY: ${{ secrets.PX_API_KEY }}
@@ -124,6 +130,7 @@ jobs:
130
run: |
131
bazel run //src/e2e_test/perf_tool:perf_tool -- run \
132
--api_key="${PX_API_KEY}" \
133
+ --cloud_addr=${{ vars.PERF_CLOUD_ADDR }}
134
--commit_sha="${{ steps.get-commit-sha.outputs.commit-sha }}" \
128
135
--experiment_name=clickhouse-export \
129
136
--suite=clickhouse-exec \
0 commit comments