Skip to content

Commit

Permalink
Update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikMN committed Jan 13, 2025
1 parent 2b9406f commit c9438eb
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/build-widget-wizard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,28 +47,16 @@ jobs:
exit 1
fi
# Set up Docker Buildx for caching:
# Set up Docker Buildx:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

# Cache Docker layers to speed up subsequent builds:
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ env.TAG }}
restore-keys: |
${{ runner.os }}-docker-
${{ runner.os }}-
# Build the Docker image (equivalent to `make dockersetup`):
- name: Build Docker Image
run: |
docker buildx build \
--load \
--progress=plain \
--cache-from=type=local,src=/tmp/.buildx-cache \
--cache-to=type=local,dest=/tmp/.buildx-cache \
-f docker/Dockerfile \
./docker -t widget_wizard_img_aarch64
Expand Down

0 comments on commit c9438eb

Please sign in to comment.