From 4698ec4e65f8617867abd73f9fc0bcc7125f3261 Mon Sep 17 00:00:00 2001 From: Adrien Piquerez Date: Tue, 22 Nov 2022 16:41:59 +0100 Subject: [PATCH] Fix CI: set stack size --- .github/workflows/ci.yml | 7 +++---- .jvmopts | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2773bd207..d99b99512 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,10 +27,10 @@ jobs: jvm: "adopt:1.8" - uses: coursier/cache-action@v5 - name: Unit tests - run: sbtn test + run: sbt test shell: bash - name: Package server - run: sbtn server/universal:packageBin + run: sbt server/universal:packageBin shell: bash integration: runs-on: ubuntu-latest @@ -41,8 +41,7 @@ jobs: - uses: coursier/setup-action@v1 with: jvm: "adopt:1.8" - - uses: coursier/cache-action@v5 - name: Integration tests env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: sbtn 'IntegrationTest / test' + run: sbt 'IntegrationTest/test' diff --git a/.jvmopts b/.jvmopts index 7e1a33fa6..e7af3333f 100644 --- a/.jvmopts +++ b/.jvmopts @@ -1 +1,2 @@ -Xmx2G +-Xss2M