diff --git a/.github/workflows/build-only.yml b/.github/workflows/build-only.yml index 501209e..88648cb 100644 --- a/.github/workflows/build-only.yml +++ b/.github/workflows/build-only.yml @@ -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 diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml deleted file mode 100644 index 2c019b4..0000000 --- a/.github/workflows/build-test.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: "Test Build" - -on: - workflow_dispatch: - -env: - # we only test if a build passes on amd64 (faster) - PLATFORMS: linux/amd64 - -jobs: - build_fpm: - runs-on: ubuntu-latest - - steps: - - name: "Checkout Sourcecode" - uses: actions/checkout@v3 - - - name: "Check permissions" - run: | - id - pwd - ls -la