More statements: TRANSACTIONS, EXPORT, INSERT, VACUUM #112
Workflow file for this run
This file contains hidden or 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: 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: "Remove pre-installed software to free up space" | |
| run: | | |
| sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL | |
| - 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 | |
| shell: bash | |
| run: | | |
| make debug | |
| # we don't build with Ninja because the github machines kill the process otherwise | |
| - name: Build and Test | |
| shell: bash | |
| run: | | |
| make test_debug |