Skip to content

Commit

Permalink
Use existing workflow file for test
Browse files Browse the repository at this point in the history
  • Loading branch information
baschny committed Apr 23, 2024
1 parent ececcb6 commit fdb160e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 82 deletions.
66 changes: 6 additions & 60 deletions .github/workflows/build-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,69 +11,15 @@ env:
PLATFORMS: linux/amd64

jobs:
build_fpm:
build_test:
runs-on: ubuntu-latest

strategy:
matrix:
include:
- php-version: "8.3"
- php-version: "8.2"
- php-version: "8.1"

steps:
- name: "Checkout Sourcecode"
uses: actions/checkout@v3

- name: "Set up Docker Buildx"
id: builder
uses: docker/setup-buildx-action@v2

- name: "Docker build only (fpm image)"
uses: docker/build-push-action@v4
with:
tags: "croneu/phpapp-fpm:php-${{ matrix.php-version }}"
platforms: ${{ env.PLATFORMS }}
push: false
cache-from: type=gha
cache-to: type=gha,mode=max
target: php-fpm
build-args: |
PHP_MINOR_VERSION=${{ matrix.php-version }}
build_ssh:
needs:
- build_fpm

runs-on: ubuntu-latest

strategy:
matrix:
include:
- php-version: "8.3"
node-version: "20"
- php-version: "8.2"
node-version: "18"
- php-version: "8.1"
node-version: "16"

steps:
- name: "Checkout Sourcecode"
uses: actions/checkout@v3

- name: "Set up Docker Buildx"
id: builder
uses: docker/setup-buildx-action@v2

- name: "Docker build only (ssh image)"
uses: docker/build-push-action@v4
with:
tags: "croneu/phpapp-ssh:php-${{ matrix.php-version }}-node-${{ matrix.node-version }}"
platforms: ${{ env.PLATFORMS }}
push: false
cache-from: type=gha
cache-to: type=gha,mode=max
target: ssh
build-args: |
PHP_MINOR_VERSION=${{ matrix.php-version }}
NODE_VERSION=${{ matrix.node-version }}
- name: "Check permissions"
run: |
id
pwd
ls -la
22 changes: 0 additions & 22 deletions .github/workflows/build-test.yml

This file was deleted.

0 comments on commit fdb160e

Please sign in to comment.