Skip to content

Commit 968316b

Browse files
author
bartlomiej.zylinski
committed
Attempt to fix CI OOME problem
1 parent de152c7 commit 968316b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
env:
1414
STTP_NATIVE: 1
1515
steps:
16+
- name: Set Java Opts
17+
run: |
18+
echo "JAVA_OPTS=-Xmx3000M -Dsbt.task.timings=true" >> $GITHUB_ENV
1619
- name: Checkout
1720
uses: actions/checkout@v2
1821
- name: Set up JDK 11
@@ -46,6 +49,9 @@ jobs:
4649
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
4750
runs-on: ubuntu-20.04
4851
steps:
52+
- name: Set Java Opts
53+
run: |
54+
echo "JAVA_OPTS=-Xmx3000M -Dsbt.task.timings=true" >> $GITHUB_ENV
4955
- name: Checkout
5056
uses: actions/checkout@v2
5157
with:
@@ -80,6 +86,9 @@ jobs:
8086
env:
8187
STTP_NATIVE: 1
8288
steps:
89+
- name: Set Java Opts
90+
run: |
91+
echo "JAVA_OPTS=-Xmx3000M -Dsbt.task.timings=true" >> $GITHUB_ENV
8392
- name: Checkout
8493
uses: actions/checkout@v2
8594
- name: Set up JDK 11

0 commit comments

Comments
 (0)