Skip to content

Commit

Permalink
disable arm builds for now
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Nov 27, 2023
1 parent 3aa07cc commit 848c4ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/_artifacts_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
with:
name: native-${{ runner.os }}
path: ${{ github.workspace }}/artifacts/packages/native
-
name: Setup QEMU
if: inputs.arch == 'arm64'
uses: docker/setup-qemu-action@v3
# -
# name: Setup QEMU
# if: inputs.arch == 'arm64'
# uses: docker/setup-qemu-action@v3
-
name: Echo
shell: pwsh
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
with:
name: nuget
path: ${{ github.workspace }}/artifacts/packages/nuget
-
name: Setup QEMU
if: inputs.arch == 'arm64'
uses: docker/setup-qemu-action@v3
# -
# name: Setup QEMU
# if: inputs.arch == 'arm64'
# uses: docker/setup-qemu-action@v3
-
name: Docker Test
if: success() && github.event_name == 'pull_request' || github.repository_owner != 'GitTools'
Expand Down
2 changes: 1 addition & 1 deletion build/docker/BuildLifetime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public override void Setup(BuildContext context, ISetupContext info)

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

var architectures = context.Arguments<Architecture>(Arguments.Architecture) ?? Constants.ArchToBuild;
var architectures = context.HasArgument(Arguments.Architecture) ? context.Arguments<Architecture>(Arguments.Architecture) : Constants.ArchToBuild;
var dockerRegistry = context.Argument(Arguments.DockerRegistry, DockerRegistry.DockerHub);
var dotnetVersion = context.Argument(Arguments.DockerDotnetVersion, string.Empty).ToLower();
var dockerDistro = context.Argument(Arguments.DockerDistro, string.Empty).ToLower();
Expand Down

0 comments on commit 848c4ed

Please sign in to comment.