Skip to content

Commit

Permalink
Try without QEMU and with more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Oct 16, 2024
1 parent 8d191fb commit ba465fd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ 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 QEMU
# uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build backend
Expand All @@ -188,5 +188,5 @@ jobs:
shell: bash
- name: Image digest
run: |
docker image inspect combine_backend:latest -f '{{json .Id}}'
docker --debug image inspect combine_backend:latest -f '{{json .Id}}'
shell: bash
4 changes: 3 additions & 1 deletion .github/workflows/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ 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
Expand All @@ -38,5 +40,5 @@ jobs:
shell: bash
- name: Image digest
run: |
docker image inspect combine_database:latest -f '{{json .Id}}'
docker --debug image inspect combine_database:latest -f '{{json .Id}}'
shell: bash
6 changes: 3 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ 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 QEMU
# uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build frontend
Expand All @@ -142,5 +142,5 @@ jobs:
shell: bash
- name: Image digest
run: |
docker image inspect combine_frontend:latest -f '{{json .Id}}'
docker --debug image inspect combine_frontend:latest -f '{{json .Id}}'
shell: bash
6 changes: 3 additions & 3 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ 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 QEMU
# uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build maintenance image
Expand All @@ -44,5 +44,5 @@ jobs:
shell: bash
- name: Image digest
run: |
docker image inspect combine_maint:latest -f '{{json .Id}}'
docker --debug image inspect combine_maint:latest -f '{{json .Id}}'
shell: bash

0 comments on commit ba465fd

Please sign in to comment.