Skip to content

Commit 848c4ed

Browse files
committed
disable arm builds for now
1 parent 3aa07cc commit 848c4ed

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/_artifacts_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
with:
4848
name: native-${{ runner.os }}
4949
path: ${{ github.workspace }}/artifacts/packages/native
50-
-
51-
name: Setup QEMU
52-
if: inputs.arch == 'arm64'
53-
uses: docker/setup-qemu-action@v3
50+
# -
51+
# name: Setup QEMU
52+
# if: inputs.arch == 'arm64'
53+
# uses: docker/setup-qemu-action@v3
5454
-
5555
name: Echo
5656
shell: pwsh

.github/workflows/_docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
with:
3838
name: nuget
3939
path: ${{ github.workspace }}/artifacts/packages/nuget
40-
-
41-
name: Setup QEMU
42-
if: inputs.arch == 'arm64'
43-
uses: docker/setup-qemu-action@v3
40+
# -
41+
# name: Setup QEMU
42+
# if: inputs.arch == 'arm64'
43+
# uses: docker/setup-qemu-action@v3
4444
-
4545
name: Docker Test
4646
if: success() && github.event_name == 'pull_request' || github.repository_owner != 'GitTools'

build/docker/BuildLifetime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public override void Setup(BuildContext context, ISetupContext info)
1414

1515
context.IsDockerOnLinux = context.DockerCustomCommand("info --format '{{.OSType}}'").First().Replace("'", "") == "linux";
1616

17-
var architectures = context.Arguments<Architecture>(Arguments.Architecture) ?? Constants.ArchToBuild;
17+
var architectures = context.HasArgument(Arguments.Architecture) ? context.Arguments<Architecture>(Arguments.Architecture) : Constants.ArchToBuild;
1818
var dockerRegistry = context.Argument(Arguments.DockerRegistry, DockerRegistry.DockerHub);
1919
var dotnetVersion = context.Argument(Arguments.DockerDotnetVersion, string.Empty).ToLower();
2020
var dockerDistro = context.Argument(Arguments.DockerDistro, string.Empty).ToLower();

0 commit comments

Comments
 (0)