increase matrix size #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: debug | |
on: [push] | |
jobs: | |
debug_busybox: | |
runs-on: ubuntu-20.04 | |
name: Debug | |
strategy: | |
fail-fast: false | |
matrix: | |
id: | |
- 1 | |
- 2 | |
- 3 | |
- 4 | |
- 5 | |
- 6 | |
- 7 | |
- 8 | |
- 9 | |
- 10 | |
- 11 | |
- 12 | |
- 13 | |
- 14 | |
- 15 | |
- 16 | |
steps: | |
- name: Print CPU | |
run: | | |
cat /proc/cpuinfo | grep model | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up runner | |
uses: ./.github/actions/setup-runner | |
- | |
name: Set up tracing | |
uses: ./.github/actions/setup-tracing | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build dev image | |
uses: docker/bake-action@v4 | |
with: | |
targets: dev |