diff --git a/.github/workflows/all-in-one.yml b/.github/workflows/all-in-one.yml index 761d060..b1e216c 100644 --- a/.github/workflows/all-in-one.yml +++ b/.github/workflows/all-in-one.yml @@ -8,30 +8,26 @@ on: clickhouse_tag: description: 'BuildTag for ClickHouse (latest)' required: false - clickhouse_image: - description: 'Image for ClickHouse (clickhouse/clickhouse-server)' - required: false jobs: build: name: Run k6 on qryn:latest runs-on: ubuntu-latest - continue-on-error: true env: - CLICKHOUSE_VERSION: "${{ github.event.inputs.clickhouse_image || 'clickhouse/clickhouse-server' }}:${{ github.event.inputs.clickhouse_tag || 'latest' }}" - QRYN_VERSION: "ghcr.io/metrico/qryn:${{ github.event.inputs.qryn_tag || 'latest' }}" + QRYN_VERSION: "clickhouse/clickhouse-server:${{ github.event.inputs.qryn_tag || 'latest' }}" + CLICKHOUSE_VERSION: "qxip/qryn:${{ github.event.inputs.clickhouse_tag || 'latest' }}" services: clickhouse: image: "clickhouse/clickhouse-server:${{ github.event.inputs.clickhouse_tag || 'latest' }}" ports: - 8123:8123 qryn: - image: "ghcr.io/metrico/qryn:${{ github.event.inputs.qryn_tag || 'latest' }}" + image: "qxip/qryn:${{ github.event.inputs.qryn_tag || 'latest' }}" ports: - 3100:3100 env: CLICKHOUSE_SERVER: clickhouse - CLICKHOUSE_AUTH: "qryn:qryn" + steps: - name: Checkout uses: actions/checkout@v4