Skip to content

Commit

Permalink
v8.2.16
Browse files Browse the repository at this point in the history
- composer 2.7.1
- swolle 5.1.2
- phalcon 5.6.1
  • Loading branch information
joseluisq committed Feb 27, 2024
1 parent 1639cec commit ffc1627
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/devel-8.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,58 @@ jobs:
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
php-arm:
runs-on: macos-14
strategy:
matrix:
build:
- arm64
- armv7
- armv6
include:
- build: arm64
arch: linux/arm64
- build: armv6
arch: linux/arm/v6
- build: armv7
arch: linux/arm/v7
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
-
name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: 8.2-fpm-${{ matrix.arch }}-buildx-${{ hashFiles('8.2-fpm/**') }}
restore-keys: |
8.2-fpm-${{ matrix.arch }}-buildx-
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build and Test
uses: docker/build-push-action@v3
with:
push: false
context: .
platforms: ${{ matrix.arch }}
file: 8.2-fpm/Dockerfile
tags: joseluisq/php-fpm:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
-
# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

0 comments on commit ffc1627

Please sign in to comment.