mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* chore(ci): add cfg for setup GreptimeDB cluster * chore: use kind * chore: always print info * chore: add debug print * chore: set etcd replica to 1 * ci: refactor e2e cfg * ci: add Fuzz Test for distributed mode * Apply suggestions from code review * chore: apply suggestions from CR * chore(ci): upload logs
19 lines
524 B
YAML
19 lines
524 B
YAML
name: Build and push CI Docker image
|
|
description: Build and push CI Docker image to local registry
|
|
inputs:
|
|
binary_path:
|
|
default: "./bin"
|
|
description: "Binary path"
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Build and push to local registry
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./docker/ci/ubuntu/Dockerfile.fuzztests
|
|
push: true
|
|
tags: localhost:5001/greptime/greptimedb:latest
|
|
build-args: |
|
|
BINARY_PATH=${{ inputs.binary_path }}
|