Skip to content

Commit 62bd1ac

Browse files
build: increase stack size
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
1 parent b1be726 commit 62bd1ac

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Gradle
3030
uses: gradle/actions/setup-gradle@main
3131
- name: Run checks
32-
run: ./gradlew check
32+
run: gradle check
3333
env:
3434
ossrhUsername: ${{ secrets.OSSRHPASSWORD }}
3535
ossrhPassword: ${{ secrets.OSSRHUSERNAME }}

.github/workflows/gradle_publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
distribution: 'temurin'
3030
- name: Build with Gradle
3131
uses: gradle/actions/setup-gradle@main
32-
with:
33-
arguments: publish
34-
# arguments: build check publish
32+
- name: Publish
33+
run: gradle publish
3534
env:
3635
ossrhUsername: ${{ secrets.OSSRHPASSWORD }}
3736
ossrhPassword: ${{ secrets.OSSRHUSERNAME }}

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Gradle
2222
uses: gradle/actions/setup-gradle@main
2323
- name: Run build with Gradle Wrapper
24-
run: FLOATING_TOC=false ./gradlew xmldoc sphinx
24+
run: FLOATING_TOC=false gradle xmldoc sphinx
2525
- name: Deploy
2626
uses: actions/configure-pages@main
2727
- name: Upload artifact

src/test/java/net/sf/jsqlparser/statement/SerializationTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*-
2+
* #%L
3+
* JSQLParser library
4+
* %%
5+
* Copyright (C) 2004 - 2025 JSQLParser
6+
* %%
7+
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
8+
* #L%
9+
*/
110
package net.sf.jsqlparser.statement;
211

312
import net.sf.jsqlparser.JSQLParserException;

0 commit comments

Comments
 (0)