You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/bake.yml
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ on:
8
8
description: "Ubuntu GitHub Hosted Runner to build on (one of auto, amd64, arm64). The auto runner selects the best-matching runner based on target platforms. You can set it to amd64 if your build doesn't require emulation (e.g. cross-compilation)"
9
9
required: false
10
10
default: 'auto'
11
+
distribute:
12
+
type: boolean
13
+
description: "Whether to distribute the build across multiple runners (one platform per runner)"
14
+
required: false
15
+
default: true
11
16
setup-qemu:
12
17
type: boolean
13
18
description: "Runs the setup-qemu-action step to install QEMU static binaries"
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ on:
8
8
description: "Ubuntu GitHub Hosted Runner to build on (one of auto, amd64, arm64). The auto runner selects the best-matching runner based on target platforms. You can set it to amd64 if your build doesn't require emulation (e.g. cross-compilation)"
9
9
required: false
10
10
default: 'auto'
11
+
distribute:
12
+
type: boolean
13
+
description: "Whether to distribute the build across multiple runners (one platform per runner)"
14
+
required: false
15
+
default: true
11
16
setup-qemu:
12
17
type: boolean
13
18
description: "Runs the setup-qemu-action step to install QEMU static binaries"
| `runner` | String | `auto` | [Ubuntu GitHub Hosted Runner](https://github.com/actions/runner-images?tab=readme-ov-file#available-images) to build on (one of `auto`, `amd64`, `arm64`). The `auto` runner selects the best-matching runner based on target `platforms`. You can set it to `amd64` if your build doesn't require emulation (e.g. cross-compilation) |
231
+
| `distribute` | Bool | `true` | Whether to distribute the build across multiple runners (one platform per runner) |
231
232
| `setup-qemu` | Bool | `false` | Runs the `setup-qemu-action` step to install QEMU static binaries |
232
233
| `artifact-name` | String | `docker-github-builder-assets` | Name of the uploaded GitHub artifact (for `local` output) |
| `runner` | String | `auto` | [Ubuntu GitHub Hosted Runner](https://github.com/actions/runner-images?tab=readme-ov-file#available-images) to build on (one of `auto`, `amd64`, `arm64`). The `auto` runner selects the best-matching runner based on target `platforms`. You can set it to `amd64` if your build doesn't require emulation (e.g. cross-compilation) |
339
+
| `distribute` | Bool | `true` | Whether to distribute the build across multiple runners (one platform per runner) |
338
340
| `setup-qemu` | Bool | `false` | Runs the `setup-qemu-action` step to install QEMU static binaries |
339
341
| `artifact-name` | String | `docker-github-builder-assets` | Name of the uploaded GitHub artifact (for `local` output) |
0 commit comments