Skip to content

Commit

Permalink
build: increase stack size
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Reichel <[email protected]>
  • Loading branch information
manticore-projects committed Feb 1, 2025
1 parent b1be726 commit 62bd1ac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@main
- name: Run checks
run: ./gradlew check
run: gradle check
env:
ossrhUsername: ${{ secrets.OSSRHPASSWORD }}
ossrhPassword: ${{ secrets.OSSRHUSERNAME }}
5 changes: 2 additions & 3 deletions .github/workflows/gradle_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ jobs:
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/actions/setup-gradle@main
with:
arguments: publish
# arguments: build check publish
- name: Publish
run: gradle publish
env:
ossrhUsername: ${{ secrets.OSSRHPASSWORD }}
ossrhPassword: ${{ secrets.OSSRHUSERNAME }}
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@main
- name: Run build with Gradle Wrapper
run: FLOATING_TOC=false ./gradlew xmldoc sphinx
run: FLOATING_TOC=false gradle xmldoc sphinx
- name: Deploy
uses: actions/configure-pages@main
- name: Upload artifact
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/*-
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2025 JSQLParser
* %%
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
* #L%
*/
package net.sf.jsqlparser.statement;

import net.sf.jsqlparser.JSQLParserException;
Expand Down

0 comments on commit 62bd1ac

Please sign in to comment.