Skip to content

Replace hardcoded percentages with values from a file #26

Replace hardcoded percentages with values from a file

Replace hardcoded percentages with values from a file #26

Workflow file for this run

name: Test Debug
on:
workflow_dispatch:
pull_request:
push:
branches:
- '**'
- '!main'
jobs:
build-duckdb:
name: Build DuckDB
runs-on: ubuntu-latest
timeout-minutes: 120
outputs:
duckdb-hash: ${{ steps.find-hash.outputs.hash }}
env:
BUILD_ICU: 1
BUILD_JSON: 1
BUILD_TPCH: 1
BUILD_TPCDS: 1
BUILD_PARQUET: 1
BUILD_JEMALLOC: 1
CRASH_ON_ASSERT: 1
steps:
- name: Dependencies
shell: bash
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq ninja-build ccache
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Setup Ccache
uses: hendrikmuhs/ccache-action@main
- name: Build and Test
shell: bash
run: |
make test_debug