Skip to content

Commit

Permalink
build x64 only
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Jan 17, 2025
1 parent 592c0c4 commit 3a437f2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ jobs:
uses: docker/setup-docker-action@v4
with:
daemon-config: '{ "features": { "containerd-snapshotter": true } }'
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
with:
Expand All @@ -83,8 +81,10 @@ jobs:

- name: '[Build Docker images]'
shell: pwsh
run: dotnet run/build.dll --target=DockerBuildDeps --dotnet_distro=${{ matrix.distro }} --docker_registry=dockerhub `
--push_images=${{env.PUSH_IMAGES}} --verbosity=diagnostic
run: dotnet run/build.dll `
--target=DockerBuildDeps --arch=amd64 `
--dotnet_distro=${{ matrix.distro }} --docker_registry=dockerhub `
--push_images=${{env.PUSH_IMAGES}} --verbosity=diagnostic

- name: Login to GitHub Container Registry
if: success() && env.PUSH_IMAGES == 'true'
Expand All @@ -95,5 +95,7 @@ jobs:
password: ${{ secrets.DOCKER_GITHUB_TOKEN }}
- name: '[Build Docker images]'
shell: pwsh
run: dotnet run/build.dll --target=DockerBuildDeps --dotnet_distro=${{ matrix.distro }} --docker_registry=github `
--push_images=${{env.PUSH_IMAGES}} --verbosity=diagnostic
run: dotnet run/build.dll `
--target=DockerBuildDeps --arch=amd64 `
--dotnet_distro=${{ matrix.distro }} --docker_registry=github `
--push_images=${{env.PUSH_IMAGES}} --verbosity=diagnostic

0 comments on commit 3a437f2

Please sign in to comment.