Skip to content

Commit

Permalink
Remove unnecessary QEMU, buildx
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Oct 24, 2024
1 parent 1329012 commit 9940617
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,3 +185,7 @@ jobs:
run: |
deploy/scripts/build.py --components backend --debug --arch ${{ matrix.arch }}
shell: bash
- name: Image digest
run: |
docker --debug image inspect combine_backend:latest -f '{{json .Id}}'
shell: bash
8 changes: 4 additions & 4 deletions .github/workflows/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build database image
run: |
deploy/scripts/build.py --components database --debug --arch ${{ matrix.arch }}
shell: bash
- name: Image digest
run: |
docker --debug image inspect combine_database:latest -f '{{json .Id}}'
shell: bash
6 changes: 4 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,11 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build frontend
run: |
deploy/scripts/build.py --components frontend --debug --arch ${{ matrix.arch }}
shell: bash
- name: Image digest
run: |
docker --debug image inspect combine_frontend:latest -f '{{json .Id}}'
shell: bash
6 changes: 4 additions & 2 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build maintenance image
run: |
deploy/scripts/build.py --components maintenance --debug --arch ${{ matrix.arch }}
shell: bash
- name: Image digest
run: |
docker --debug image inspect combine_maint:latest -f '{{json .Id}}'
shell: bash

0 comments on commit 9940617

Please sign in to comment.