Skip to content

Commit 7ce2f65

Browse files
committed
fixed gitactions
1 parent 5eee082 commit 7ce2f65

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/benchmarks.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,17 @@ jobs:
5555
cache: "maven"
5656
- name: Build
5757
run: mvn --batch-mode --no-transfer-progress -Dj8 -DskipTests=true clean install
58-
- name: Run Benchmarks
58+
- name: Prepare Dataset
5959
run: |
60-
cd performance &&
61-
mvn --batch-mode --no-transfer-progress compile exec:exec -Dexec.args="-classpath %classpath com.clickhouse.benchmark.data.DataSetGenerator -input sample_dataset.sql -name default -rows 100000" &&
62-
mvn --batch-mode --no-transfer-progress compile exec:exec -Dexec.args="-classpath %classpath com.clickhouse.benchmark.BenchmarkRunner -l 100000,10000 -m 1 -t 3 -b i -d file://default.csv"
60+
ls -l &&
61+
cd ./performance &&
62+
mvn --batch-mode --no-transfer-progress compile exec:exec \
63+
-Dexec.args="-classpath %classpath com.clickhouse.benchmark.data.DataSetGenerator -input sample_dataset.sql \
64+
-name default -rows 100000"
65+
- name: Run Benchmarks
66+
cd ./performance &&
67+
ls -l &&
68+
mvn --batch-mode --no-transfer-progress exec:exec -Dexec.args="-classpath %classpath com.clickhouse.benchmark.BenchmarkRunner -l 100000,10000 -m 1 -t 3 -b i -d file://default.csv"
6369
- name: Upload test results
6470
uses: actions/upload-artifact@v4
6571
if: success()

0 commit comments

Comments
 (0)