Skip to content

Commit

Permalink
ci: try to fix docker memory
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadStingray committed Oct 11, 2023
1 parent c665407 commit 232fb26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/all_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ on:
- 'main'

jobs:
# code_quality:
# runs-on: ubuntu-latest
# steps:
# - name: 'Qodana Scan'
# uses: JetBrains/qodana-action@main
# env:
# QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
test:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -35,7 +28,7 @@ jobs:
- name: Set up JDK
uses: coursier/setup-action@v1
with:
jvm: graalvm-java17:22.3.2
jvm: graalvm-java17:22.3.3
apps: sbt scala scalac
- name: Start MongoDB ${{ matrix.mongodb-version }}
uses: MongoCamp/[email protected]
Expand All @@ -61,4 +54,4 @@ jobs:
- name: Docker Info
run: docker info
- name: Build Docker Container on ${{ matrix.docker-platform }}
run: docker buildx build --memory="16g" --platform=${{ matrix.docker-platform }} . --tag mongocamp-server:test
run: docker buildx build --memory=16g --platform=${{ matrix.docker-platform }} . --tag mongocamp-server:test
4 changes: 2 additions & 2 deletions .github/workflows/main_test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up JDK
uses: coursier/setup-action@v1
with:
jvm: graalvm-java17:22.3.2
jvm: graalvm-java17:22.3.3
apps: sbt scala scalac
- name: Start MongoDB ${{ matrix.mongodb-version }}
uses: MongoCamp/[email protected]
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Set up JDK
uses: coursier/setup-action@v1
with:
jvm: graalvm-java17:22.3.2
jvm: graalvm-java17:22.3.3
apps: sbt scala scalac
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down

0 comments on commit 232fb26

Please sign in to comment.