-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f36285a
commit bd36131
Showing
1 changed file
with
102 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
Linux_EL9: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
distro: ['rockylinux'] | ||
el: [8] | ||
php: ['8.0', '8.2', 'remi-8.0', 'remi-8.1', 'remi-8.2', 'remi-8.3'] | ||
container: | ||
image: ${{ matrix.distro }}:${{ matrix.el }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup PHP module | ||
if: ${{ matrix.php }} | ||
run: | | ||
dnf install -y "https://rpms.remirepo.net/enterprise/remi-release-${{ matrix.el }}.rpm" | ||
dnf module enable -y "php:${{ matrix.php }}" | ||
- name: Install PHP | ||
run: | | ||
dnf install -y "php" "php-devel" "rpm-devel" | ||
- name: Show PHP version | ||
run: php -v | ||
- name: Make php-rpminfo | ||
run: | | ||
phpize | ||
./configure | ||
make -j"$(nproc)" | ||
- name: Test php-rpminfo | ||
env: | ||
TEST_PHP_ARGS: '-q --show-diff' | ||
run: | | ||
make test | ||
Linux_EL9: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
distro: ['rockylinux'] | ||
el: [9] | ||
php: [0, '8.1', '8.2', 'remi-8.0', 'remi-8.1', 'remi-8.2', 'remi-8.3'] | ||
container: | ||
image: ${{ matrix.distro }}:${{ matrix.el }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup PHP module | ||
if: ${{ matrix.php }} | ||
run: | | ||
dnf install -y "https://rpms.remirepo.net/enterprise/remi-release-${{ matrix.el }}.rpm" | ||
dnf module enable -y "php:${{ matrix.php }}" | ||
- name: Install PHP | ||
run: | | ||
dnf install -y "php" "php-devel" "rpm-devel" | ||
- name: Show PHP version | ||
run: php -v | ||
- name: Make php-rpminfo | ||
run: | | ||
phpize | ||
./configure | ||
make -j"$(nproc)" | ||
- name: Test php-rpminfo | ||
env: | ||
TEST_PHP_ARGS: '-q --show-diff' | ||
run: | | ||
make test | ||
Linux_Fedora: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
fedora: [39, 40, 41] | ||
php: [0, 'remi-8.0', 'remi-8.1', 'remi-8.2', 'remi-8.3'] | ||
container: | ||
image: fedora:${{ matrix.fedora }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup PHP module | ||
if: ${{ matrix.php }} | ||
run: | | ||
dnf install -y "https://rpms.remirepo.net/fedora/remi-release-${{ matrix.fedora }}.rpm" | ||
dnf module enable -y "php:${{ matrix.php }}" | ||
- name: Install PHP | ||
run: | | ||
dnf install -y "php" "php-devel" "rpm-devel" | ||
- name: Show PHP version | ||
run: php -v | ||
- name: Make php-rpminfo | ||
run: | | ||
phpize | ||
./configure | ||
make -j"$(nproc)" | ||
- name: Test php-rpminfo | ||
env: | ||
TEST_PHP_ARGS: '-q --show-diff' | ||
run: | | ||
make test |