Skip to content

Commit

Permalink
Free up disk space before checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
devbis committed Sep 6, 2023
1 parent 413fa6b commit 2356bcc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-openwrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ jobs:
BUILD_TARGET: ${{matrix.target}}

steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'

- name: Checkout
uses: actions/checkout@v3
with:
Expand All @@ -105,9 +113,10 @@ jobs:

# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
id: buildx-qemy
id: buildx-qemu
if: env.SKIP_TARGET == '0'
uses: docker/setup-qemu-action@v2

# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
Expand Down

0 comments on commit 2356bcc

Please sign in to comment.