diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8ccc8fa..7118106 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: runs-on: ubuntu-latest container: image: maven:3.9.6-eclipse-temurin-21 + options: --memory=8g steps: - name: Install git, node, gcc, and basic tools run: | @@ -58,7 +59,7 @@ jobs: restore-keys: ${{ runner.os }}-node- - name: Build (Native) - run: mvn package -Pnative -B -DskipTests + run: mvn package -Pnative -B -DskipTests -Dquarkus.native.native-image-xmx=4g - name: Upload Native binary uses: actions/upload-artifact@v4