You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* use single `FileWriter` for reducer.
* Trivial update.
* Add warning when reducer is not available.
* resolve comment.
* Try to implement a reducer.
* fix format
* Bump `setup-java` to v3 to cache maven artifacts.
* fix PMD.
* Remove non-LTS Java versions.
* Fix reducer log.
* Resolve comments.
* Update doc.
* Extract reproducer to separate class.
* Fix format issues.
* Cleanup and update messages.
docker exec $ContainerID /opt/stonedb57/install/bin/mysql -uroot -p123456 -e "CREATE USER 'sqlancer'@'%' IDENTIFIED WITH mysql_native_password BY 'sqlancer'; GRANT ALL PRIVILEGES ON *.* TO 'sqlancer'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES;"
394
424
sleep 60s
395
425
- name: Set up JDK 11
396
-
uses: actions/setup-java@v1.4.4
426
+
uses: actions/setup-java@v3
397
427
with:
398
-
java-version: 11
428
+
distribution: 'temurin'
429
+
java-version: '11'
430
+
cache: 'maven'
399
431
- name: Build
400
432
run: mvn -B package -DskipTests=true
401
433
- name: StoneDB Tests
@@ -410,9 +442,11 @@ jobs:
410
442
with:
411
443
fetch-depth: 0
412
444
- name: Set up JDK 11
413
-
uses: actions/setup-java@v1.4.4
445
+
uses: actions/setup-java@v3
414
446
with:
415
-
java-version: 11
447
+
distribution: 'temurin'
448
+
java-version: '11'
449
+
cache: 'maven'
416
450
- name: Build SQLancer
417
451
run: mvn -B package -DskipTests=true
418
452
- name: Set up TiDB
@@ -433,9 +467,11 @@ jobs:
433
467
with:
434
468
fetch-depth: 0
435
469
- name: Set up JDK 11
436
-
uses: actions/setup-java@v1.4.4
470
+
uses: actions/setup-java@v3
437
471
with:
438
-
java-version: 11
472
+
distribution: 'temurin'
473
+
java-version: '11'
474
+
cache: 'maven'
439
475
- name: Build SQLancer
440
476
run: mvn -B package -DskipTests=true
441
477
- name: Set up TiDB
@@ -456,9 +492,11 @@ jobs:
456
492
with:
457
493
fetch-depth: 0
458
494
- name: Set up JDK 11
459
-
uses: actions/setup-java@v1.4.4
495
+
uses: actions/setup-java@v3
460
496
with:
461
-
java-version: 11
497
+
distribution: 'temurin'
498
+
java-version: '11'
499
+
cache: 'maven'
462
500
- name: Build SQLancer
463
501
run: mvn -B package -DskipTests=true
464
502
- name: Set up Yugabyte
@@ -478,9 +516,11 @@ jobs:
478
516
with:
479
517
fetch-depth: 0
480
518
- name: Set up JDK 11
481
-
uses: actions/setup-java@v1
519
+
uses: actions/setup-java@v3
482
520
with:
483
-
java-version: 11
521
+
distribution: 'temurin'
522
+
java-version: '11'
523
+
cache: 'maven'
484
524
- name: install mysql client
485
525
run: |
486
526
sudo apt update
@@ -509,58 +549,6 @@ jobs:
509
549
- name: Run Tests
510
550
run: DORIS_AVAILABLE=true mvn -Dtest=TestDoris test
0 commit comments