feat(config): clickhouse connection settings #4054
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
permissions: | |
contents: read | |
env: | |
DAGGER_VERSION: 0.12.0 | |
jobs: | |
build: | |
name: Build | |
runs-on: depot-ubuntu-latest-8 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up Nix | |
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- name: Set up magic Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@b46e247b898aa56e6d2d2e728dc6df6c84fdb738 # v7 | |
- name: Prepare Nix shell | |
run: nix develop --impure .#ci | |
- name: Build Server | |
run: nix develop --impure .#ci -c make build-server | |
- name: Build Sink Worker | |
run: nix develop --impure .#ci -c make build-sink-worker | |
test: | |
name: Test | |
runs-on: depot-ubuntu-latest-8 | |
steps: | |
# Required as a workaround for Dagger to properly detect Git metadata | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run pipeline | |
uses: dagger/dagger-for-github@8ab204f3cf74a4940a1648469c426ef0d28af7cc # v6.6.0 | |
with: | |
verb: call | |
module: github.com/${{ github.repository }}@${{ github.ref }} | |
args: --ref ${{ github.ref }} test | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
version: ${{ env.DAGGER_VERSION }} | |
- name: Export Dagger Engine logs | |
id: export-dagger-engine-logs | |
run: docker logs $(docker container list --all --filter 'name=^dagger-engine-*' --format '{{.Names}}') > engine.stdout.log 2> engine.stderr.log | |
if: always() | |
continue-on-error: true | |
- name: Upload Dagger Engine logs as artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: always() && steps.export-dagger-engine-logs.outcome == 'success' | |
with: | |
name: "[${{ github.job }}] Dagger Engine logs" | |
path: | | |
engine.stdout.log | |
engine.stderr.log | |
retention-days: 14 | |
migrations: | |
name: Migration Checks | |
runs-on: depot-ubuntu-latest-8 | |
steps: | |
# Required as a workaround for Dagger to properly detect Git metadata | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 # Needed to compare against base branch | |
- name: Run pipeline | |
uses: dagger/dagger-for-github@8ab204f3cf74a4940a1648469c426ef0d28af7cc # v6.6.0 | |
with: | |
verb: call | |
module: github.com/${{ github.repository }}@${{ github.ref }} | |
args: --ref ${{ github.ref }} migrate check | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
version: ${{ env.DAGGER_VERSION }} | |
- name: Export Dagger Engine logs | |
id: export-dagger-engine-logs | |
run: docker logs $(docker container list --all --filter 'name=^dagger-engine-*' --format '{{.Names}}') > engine.stdout.log 2> engine.stderr.log | |
if: always() | |
continue-on-error: true | |
- name: Upload Dagger Engine logs as artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: always() && steps.export-dagger-engine-logs.outcome == 'success' | |
with: | |
name: "[${{ github.job }}] Dagger Engine logs" | |
path: | | |
engine.stdout.log | |
engine.stderr.log | |
retention-days: 14 | |
lint: | |
name: Lint | |
runs-on: depot-ubuntu-latest-8 | |
steps: | |
# Required as a workaround for Dagger to properly detect Git metadata | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run pipeline | |
uses: dagger/dagger-for-github@8ab204f3cf74a4940a1648469c426ef0d28af7cc # v6.6.0 | |
with: | |
verb: call | |
module: github.com/${{ github.repository }}@${{ github.ref }} | |
args: --ref ${{ github.ref }} lint all | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
version: ${{ env.DAGGER_VERSION }} | |
- name: Export Dagger Engine logs | |
id: export-dagger-engine-logs | |
run: docker logs $(docker container list --all --filter 'name=^dagger-engine-*' --format '{{.Names}}') > engine.stdout.log 2> engine.stderr.log | |
if: always() | |
continue-on-error: true | |
- name: Upload Dagger Engine logs as artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: always() && steps.export-dagger-engine-logs.outcome == 'success' | |
with: | |
name: "[${{ github.job }}] Dagger Engine logs" | |
path: | | |
engine.stdout.log | |
engine.stderr.log | |
retention-days: 14 | |
commit-hooks: | |
name: Commit hooks | |
runs-on: depot-ubuntu-latest-4 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Set up Nix | |
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- name: Set up magic Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@b46e247b898aa56e6d2d2e728dc6df6c84fdb738 # v7 | |
- name: Prepare Nix shell | |
run: nix develop --impure .#ci | |
- name: Pre-commit hooks | |
run: nix develop --impure .#ci -c pre-commit run -a | |
- name: Check commit messages | |
run: nix develop --impure .#ci -c pre-commit run --hook-stage manual | |
dev: | |
name: Developer environment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up Nix | |
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- name: Set up magic Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@b46e247b898aa56e6d2d2e728dc6df6c84fdb738 # v7 | |
- name: Check | |
run: nix flake check --impure | |
- name: Dev shell | |
run: nix develop --impure | |
artifacts: | |
name: Artifacts | |
uses: ./.github/workflows/artifacts.yaml | |
with: | |
publish: ${{ github.event_name == 'push' }} | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
security-events: write | |
dependency-review: | |
name: Dependency review | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4 | |
fossa-scan: | |
name: FOSSA Scan | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run FOSSA Scan | |
uses: fossas/fossa-action@09bcf127dc0ccb4b5a023f6f906728878e8610ba # v1.4.0 | |
with: | |
api-key: ${{secrets.FOSSA_API_KEY}} | |
quickstart: | |
name: Quickstart | |
runs-on: depot-ubuntu-latest-8 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Launch Docker Compose | |
run: docker compose -f docker-compose.yaml -f docker-compose.ci.yaml up -d | |
working-directory: quickstart | |
- name: Wait for worker to become ready | |
run: curl --retry 10 --retry-max-time 120 --retry-all-errors http://localhost:10000/healthz | |
- name: Run tests | |
uses: dagger/dagger-for-github@8ab204f3cf74a4940a1648469c426ef0d28af7cc # v6.6.0 | |
with: | |
verb: call | |
args: --source .:default quickstart-test --service tcp://localhost:8888 --port 8888 | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
version: ${{ env.DAGGER_VERSION }} | |
- name: Export Container Logs | |
id: export-container-logs | |
run: docker logs $(docker container list --all --filter 'name=^*-openmeter-*' --format '{{.Names}}') > container.stdout.log 2> container.stderr.log | |
if: always() | |
continue-on-error: true | |
- name: Upload Container logs as artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: always() && steps.export-container-logs.outcome == 'success' | |
with: | |
name: "[${{ github.job }}] Container logs" | |
path: | | |
container.stdout.log | |
container.stderr.log | |
retention-days: 14 | |
- name: Cleanup Docker Compose | |
run: docker compose -f docker-compose.yaml -f docker-compose.ci.yaml down -v | |
working-directory: quickstart | |
if: always() | |
e2e: | |
name: E2E | |
runs-on: depot-ubuntu-latest-16 | |
steps: | |
# Required as a workaround for Dagger to properly detect Git metadata | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run pipeline | |
uses: dagger/dagger-for-github@8ab204f3cf74a4940a1648469c426ef0d28af7cc # v6.6.0 | |
with: | |
verb: call | |
module: github.com/${{ github.repository }}@${{ github.ref }} | |
args: --ref ${{ github.ref }} etoe | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
version: ${{ env.DAGGER_VERSION }} | |
- name: Export Dagger Engine logs | |
id: export-dagger-engine-logs | |
run: docker logs $(docker container list --all --filter 'name=^dagger-engine-*' --format '{{.Names}}') > engine.stdout.log 2> engine.stderr.log | |
if: always() | |
continue-on-error: true | |
- name: Upload Dagger Engine logs as artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: always() && steps.export-dagger-engine-logs.outcome == 'success' | |
with: | |
name: "[${{ github.job }}] Dagger Engine logs" | |
path: | | |
engine.stdout.log | |
engine.stderr.log | |
retention-days: 14 | |
dagger: | |
name: CI | |
runs-on: depot-ubuntu-latest-16 | |
steps: | |
# Required as a workaround for Dagger to properly detect Git metadata | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run pipeline | |
uses: dagger/dagger-for-github@8ab204f3cf74a4940a1648469c426ef0d28af7cc # v6.6.0 | |
with: | |
verb: call | |
module: github.com/${{ github.repository }}@${{ github.ref }} | |
args: --ref ${{ github.ref }} ci | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
version: ${{ env.DAGGER_VERSION }} | |
- name: Export Dagger Engine logs | |
id: export-dagger-engine-logs | |
run: docker logs $(docker container list --all --filter 'name=^dagger-engine-*' --format '{{.Names}}') > engine.stdout.log 2> engine.stderr.log | |
if: always() | |
continue-on-error: true | |
- name: Upload Dagger Engine logs as artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: always() && steps.export-dagger-engine-logs.outcome == 'success' | |
with: | |
name: "[${{ github.job }}] Dagger Engine logs" | |
path: | | |
engine.stdout.log | |
engine.stderr.log | |
retention-days: 14 |