Skip to content

Don't test 8.4 on i386 #432

Don't test 8.4 on i386

Don't test 8.4 on i386 #432

Workflow file for this run

name: PHPUnit
on:
push:
pull_request:
schedule:
- cron: '45 3 * * SUN'
jobs:
run:
runs-on: ${{ matrix.operating-system }}
container: shivammathur/node:latest-${{ matrix.arch }}
strategy:
matrix:
arch: ["amd64", "i386"]
operating-system: [ubuntu-latest]
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
php-extensions: ['bcmath', 'gmp']
exclude:
# We are getting weird libxml2 failures on this combo
- arch: "i386"
php: 8.4

Check failure on line 22 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / PHPUnit

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 22, Col: 13): Matrix exclude key 'php' does not match any key within the matrix
name: "PHP ${{ matrix.php-versions }} (with ${{ matrix.php-extensions }}) test on ${{ matrix.operating-system }}/${{ matrix.arch }}"
steps:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: "mbstring, intl, ${{ matrix.php-extensions }}"
tools: "composer, phpize"
- name: Checkout
# We use v1 due to https://github.com/actions/checkout/issues/334
uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libmaxminddb-dev
- name: Build extension
run: |
cd ext
phpize
./configure --with-maxminddb --enable-maxminddb-debug
make clean
make
NO_INTERACTION=1 make test
cd ..
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Test with phpunit without extension
run: vendor/bin/phpunit
- name: Test with phpunit using extension
run: php -d extension=ext/modules/maxminddb.so vendor/bin/phpunit