Skip to content

Commit d230361

Browse files
committed
fixed gitactions
1 parent 715647c commit d230361

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/benchmarks.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,17 @@ jobs:
5757
run: mvn --batch-mode --no-transfer-progress -Dj8 -DskipTests=true clean install
5858
- name: Prepare Dataset
5959
run: |
60-
ls -l &&
6160
cd ./performance &&
61+
ls -l &&
6262
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"
63+
-Dexec.args='-classpath %classpath com.clickhouse.benchmark.data.DataSetGenerator -input sample_dataset.sql \
64+
-name default -rows 100000'
6565
- name: Run Benchmarks
6666
run: |
6767
cd ./performance &&
6868
ls -l &&
69-
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"
69+
mvn --batch-mode --no-transfer-progress exec:exec -Dexec.args='-classpath %classpath com.clickhouse.benchmark.BenchmarkRunner \
70+
-l 100000,10000 -m 1 -t 3 -b i -d file://default.csv'
7071
- name: Upload test results
7172
uses: actions/upload-artifact@v4
7273
if: success()

performance/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
<plugin>
165165
<groupId>org.codehaus.mojo</groupId>
166166
<artifactId>exec-maven-plugin</artifactId>
167+
<version>${exec-plugin.version}</version>
167168
<configuration>
168169
<executable>java</executable>
169170
<arguments>

0 commit comments

Comments
 (0)