Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable PHP nightly on Travis CI builds #1937

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 26 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,29 +39,38 @@ branches:
- /master-[0-9.]+/

php:
- 8.3
- 8.2
- 8.1
- 8.0
- 7.4
# - 8.3
# - 8.2
# - 8.1
# - 8.0
# - 7.4

env:
- DB=mysql
- DB=pgsql
# - DB=pgsql

jobs:
include:
# Add a specific build for Documentation
- name: Documentation
env: DOCBOOK=1
# Using Ruby as it's preinstalled and we don't need PHP to build docs
language: ruby
addons:
apt:
packages:
- publican

allow_failures: []
# Nigthly build (MySQL only)
# 2023-11-04 "nightly" is actually 8.0.27-dev built: Dec 7 2022 19:29:53...
# 2024-01-24 trying "master" instead of "nightly" following Travis support instructions
- php: master
env: DB=mysql
dist: focal

# # Add a specific build for Documentation
# - name: Documentation
# env: DOCBOOK=1
# # Using Ruby as it's preinstalled and we don't need PHP to build docs
# language: ruby
# addons:
# apt:
# packages:
# - publican

fast_finish: true
allow_failures:
- php: nightly


# -----------------------------------------------------------------------------
Expand Down