Skip to content

Commit

Permalink
GitHub actions: Try using ldc --lowmem flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
jondegenhardt committed Jun 13, 2021
1 parent c50dafa commit 38ed0a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
if: ${{ startsWith(matrix.dc, 'ldc') }}
shell: bash
run: |
make test-release DCOMPILER=${DC} LDC_LTO_RUNTIME=1 LDC_PGO=2
make test-release DCOMPILER=${DC} LDC_LTO_RUNTIME=1 LDC_PGO=2 DFLAGS='--lowmem'
make clean
linux-release-build:
Expand All @@ -141,7 +141,7 @@ jobs:
if: ${{ startsWith(matrix.dc, 'ldc') }}
shell: bash
run: |
make test-release DCOMPILER=${DC} LDC_LTO_RUNTIME=1 LDC_PGO=2 DFLAGS=-static
make test-release DCOMPILER=${DC} LDC_LTO_RUNTIME=1 LDC_PGO=2 DFLAGS='-static --lowmem'
make clean
dub-build:
Expand Down

0 comments on commit 38ed0a1

Please sign in to comment.