Skip to content

Commit b6abcfa

Browse files
authored
Merge pull request #707 from mcserep/max-disk-space
Maximize disk space in CI
2 parents 986a37d + 9cbe592 commit b6abcfa

4 files changed

Lines changed: 4 additions & 25 deletions

File tree

.github/scripts/ubuntu-20.04/postcompile_runtime.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/scripts/ubuntu-20.04/setup_runtime.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/scripts/ubuntu-22.04/postcompile_runtime.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ jobs:
206206
- 5432:5432
207207

208208
steps:
209+
# Clean up docker images to save space
210+
- name: Clean up docker images
211+
run: docker image prune -a -f
212+
209213
- uses: actions/checkout@v3
210214

211215
- name: Update apt-get
@@ -239,14 +243,6 @@ jobs:
239243
${{ matrix.os }}-compile-install-${{ needs.build.outputs.ubuntu-20-04-compile-hash-key }}
240244
${{ matrix.os }}-compile-install-${{ needs.build.outputs.ubuntu-22-04-compile-hash-key }}
241245
242-
- name: Post compilation configuration (runtime)
243-
if: ${{ env.HAS_COMPILED_DEPENDENCIES == 'true' }}
244-
run: |
245-
if [ -f ./.github/scripts/${{ matrix.os }}/postcompile_runtime.sh ]; then
246-
chmod +x ./.github/scripts/${{ matrix.os }}/postcompile_runtime.sh
247-
./.github/scripts/${{ matrix.os }}/postcompile_runtime.sh
248-
fi
249-
250246
- name: Download CodeCompass binaries
251247
uses: actions/download-artifact@v2
252248
with:

0 commit comments

Comments
 (0)