Skip to content

Commit

Permalink
Avoid building benchmarks for x64
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Jan 28, 2025
1 parent 0959644 commit 9ab1035
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/LinuxRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
# Builds binaries for linux_amd64_gcc4
name: Linux (x64)
runs-on: ubuntu-latest
needs: linux-extensions-64
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature' }}

steps:
Expand All @@ -78,7 +77,7 @@ jobs:
-e EXTENSION_CONFIGS="$PWD/.github/config/bundled_extensions.cmake" \
-e ENABLE_EXTENSION_AUTOLOADING=1 \
-e ENABLE_EXTENSION_AUTOINSTALL=1 \
-e BUILD_BENCHMARK=1 \
-e BUILD_BENCHMARK=0 \
-e FORCE_WARN_UNUSED=1 \
-e DUCKDB_RUN_PARALLEL_CSV_TESTS=1 \
quay.io/pypa/manylinux2014_x86_64 \
Expand Down Expand Up @@ -107,6 +106,12 @@ jobs:
libduckdb-linux-amd64.zip
duckdb_cli-linux-amd64.zip
- uses: actions/upload-artifact@v4
with:
name: duckdb-binaries-linux-sources
path: |
libduckdb-src.zip
- name: Test
shell: bash
if: ${{ inputs.skip_tests != 'true' }}
Expand Down

0 comments on commit 9ab1035

Please sign in to comment.