Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/build-all-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ jobs:
steps:
- name: Checkout build repo
uses: actions/checkout@v4
with: { clean: false, fetch-depth: 0 }

- name: Cleanup directories
run: rm -rf out dist # Since we've clean:false in actions/checkout above, ensure we start fresh, still, preserve cache/ dir on self-hosted runners

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -100,6 +104,10 @@ jobs:
steps:
- name: Checkout build repo
uses: actions/checkout@v4
with: { clean: false, fetch-depth: 0 }

- name: Cleanup directories
run: rm -rf out dist # Since we've clean:false in actions/checkout above, ensure we start fresh, still, preserve cache/ dir on self-hosted runners

- name: Set up Docker Buildx # nb: no need for qemu here, kernels are cross-compiled, instead of the compilation being emulated
uses: docker/setup-buildx-action@v3
Expand Down Expand Up @@ -130,6 +138,10 @@ jobs:
steps:
- name: Checkout build repo
uses: actions/checkout@v4
with: { clean: false, fetch-depth: 0 }

- name: Cleanup directories
run: rm -rf out dist # Since we've clean:false in actions/checkout above, ensure we start fresh, still, preserve cache/ dir on self-hosted runners

- name: Set up Docker Buildx # nb: no need for qemu here, kernels are cross-compiled, instead of the compilation being emulated
uses: docker/setup-buildx-action@v3
Expand Down