Skip to content

Commit

Permalink
Update k6.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Dec 2, 2023
1 parent 3487c9d commit 7067f52
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/k6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,20 @@ on:
clickhouse_tag:
description: 'BuildTag for ClickHouse (latest)'
required: false
clickhouse_image:
description: 'Image for ClickHouse (ghcr.io/chdb-io/chdb-server)'
required: false

jobs:
build:
name: Run k6 on qryn:latest
runs-on: ubuntu-latest
env:
CLICKHOUSE_VERSION: "ghcr.io/chdb-io/chdb-server:${{ github.event.inputs.qryn_tag || 'latest' }}"
QRYN_VERSION: "qxip/qryn:${{ github.event.inputs.clickhouse_tag || 'latest' }}"
CLICKHOUSE_VERSION: "${{ github.event.inputs.clickhouse_image || 'ghcr.io/chdb-io/chdb-server' }}:${{ github.event.inputs.qryn_tag || 'latest' }}"
QRYN_VERSION: "ghcr.io/metrico/qryn:${{ github.event.inputs.clickhouse_tag || 'latest' }}"
services:
clickhouse:
image: "ghcr.io/chdb-io/chdb-server:${{ github.event.inputs.clickhouse_tag || 'latest' }}"
image: "${{ github.event.inputs.clickhouse_image || 'ghcr.io/chdb-io/chdb-server' }}:${{ github.event.inputs.clickhouse_tag || 'latest' }}"
ports:
- 8123:8123
env:
Expand Down Expand Up @@ -108,7 +111,7 @@ jobs:
echo "qxip/qryn:${{ github.event.inputs.qryn_tag || 'latest' }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### chdb image" >> $GITHUB_STEP_SUMMARY
echo "ghcr.io/chdb-io/chdb-server:${{ github.event.inputs.clickhouse_tag || 'latest' }}" >> $GITHUB_STEP_SUMMARY
echo "${{ github.event.inputs.clickhouse_image || 'ghcr.io/chdb-io/chdb-server' }}:${{ github.event.inputs.clickhouse_tag || 'latest' }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Loki Test" >> $GITHUB_STEP_SUMMARY
cat loki_summary.txt >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 7067f52

Please sign in to comment.