Multiple bumps & fixes to CI versions (Kubernetes, GH Actions, PHP) #1114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.1', '8.2', '8.3'] | |
kubernetes: ['1.27.11', '1.28.7', '1.29.2'] | |
laravel: ['10.*', '11.*'] | |
prefer: [prefer-lowest, prefer-stable] | |
include: | |
- laravel: "10.*" | |
testbench: "8.*" | |
- laravel: "11.*" | |
testbench: "9.*" | |
exclude: | |
- laravel: "11.*" | |
php: "8.1" | |
- laravel: "10.*" | |
php: "8.3" | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - K8s v${{ matrix.kubernetes }} --${{ matrix.prefer }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, yaml | |
coverage: pcov | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Prepare cache key | |
id: prep | |
run: | | |
PHP_VERSION=${{ matrix.php }} | |
LARAVEL_VERSION=${{ matrix.laravel }} | |
PREFER_VERSION=${{ matrix.prefer }} | |
# Remove any .* from the versions | |
LARAVEL_VERSION=${LARAVEL_VERSION//.*} | |
echo "cache-key=composer-php-$PHP_VERSION-$LARAVEL_VERSION-$PREFER_VERSION-${{ hashFiles('composer.json') }}" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Cache dependencies | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ steps.prep.outputs.cache-key }} | |
- uses: medyagh/setup-minikube@latest | |
name: Setup Minikube | |
with: | |
minikube-version: 1.32.0 | |
driver: docker | |
container-runtime: containerd | |
kubernetes-version: "v${{ matrix.kubernetes }}" | |
- name: Run Kubernetes Proxy | |
run: | | |
kubectl proxy --port=8080 --reject-paths="^/non-existent-path" & | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction | |
- name: Setup in-cluster config | |
run: | | |
sudo mkdir -p /var/run/secrets/kubernetes.io/serviceaccount | |
echo "some-token" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/token | |
echo "c29tZS1jZXJ0Cg==" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/ca.crt | |
echo "some-namespace" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/namespace | |
sudo chmod -R 777 /var/run/secrets/kubernetes.io/serviceaccount/ | |
- name: Setting CRDs for testing | |
run: | | |
kubectl apply -f https://raw.githubusercontent.com/bitnami-labs/sealed-secrets/main/helm/sealed-secrets/crds/bitnami.com_sealedsecrets.yaml | |
- name: Run tests | |
run: | | |
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml | |
- uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: false |