Skip to content

Commit

Permalink
potential fix for failing vv8 build
Browse files Browse the repository at this point in the history
Postprocessor build fix will take a bit more time
  • Loading branch information
sohomdatta1 authored Sep 28, 2024
1 parent 80fe789 commit c2a7be4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/build-postprocessors/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ runs:
using: 'composite'
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: ./post-processor
file: ./.github/build-postprocessors/Dockerfile
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/chromium-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ jobs:
tags: |
type=raw,value=latest,enable=true
type=raw,value=${{ steps.short_sha.outputs.sha_short }}_${{ steps.get_release.outputs.chromeReleaseVersion }},enable=true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
if: steps.shouldPublish.outputs.shouldPublish == 'true'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/post-processor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
type=raw,value=latest,enable=true
type=raw,value=${{ steps.short_sha.outputs.sha_short }},enable=true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./post-processor/
file: ./post-processor/build/Dockerfile.vv8
Expand Down

0 comments on commit c2a7be4

Please sign in to comment.