diff --git a/.github/workflows/haupt.yml b/.github/workflows/haupt.yml index 86e8c31..9a33d77 100644 --- a/.github/workflows/haupt.yml +++ b/.github/workflows/haupt.yml @@ -16,7 +16,7 @@ env: SKIP_HYRISE_MASTER: false SKIP_MONETDB: false SKIP_DUCKDB: false - SCALE_FACTOR: 1 + SCALE_FACTOR: 2 CMAKE_GENERATOR: Ninja jobs: @@ -55,9 +55,9 @@ jobs: - name: Determine core and client counts for database comparison id: core_client_counts run: | - core_count=`grep -Pc '^processor\t' /proc/cpuinfo` - client_count=$(python -c "import math; print(int(math.ceil(${core_count}*0.75)))") - comparison_runtime=$(python -c "print(min(1800, max(300, int(${{ env.SCALE_FACTOR }}*3500))))") + core_count=1 + client_count=1 + comparison_runtime=60 echo "Using ${core_count} cores and ${client_count} clients, comparison benchmarks running for ${comparison_runtime} seconds." echo "CORE_COUNT=${core_count}" >> $GITHUB_ENV @@ -202,9 +202,9 @@ jobs: - name: Determine client and core counts for database comparison id: core_client_counts run: | - core_count=`grep -Pc '^processor\t' /proc/cpuinfo` - client_count=$(python -c "import math; print(int(math.ceil(${core_count}*0.75)))") - comparison_runtime=$(python -c "print(min(1800, max(300, int(${{ env.SCALE_FACTOR }}*3500))))") + core_count=1 + client_count=1 + comparison_runtime=60 echo "Using ${core_count} cores and ${client_count} clients, comparison benchmarks running for ${comparison_runtime} seconds." echo "CORE_COUNT=${core_count}" >> $GITHUB_ENV