Skip to content

Commit af91f01

Browse files
committed
minor symfony#829 [CI] run tests on ubuntu 18.04 (jrushlow)
This PR was merged into the 1.0-dev branch. Discussion ---------- [CI] run tests on ubuntu 18.04 Use ubuntu 1804 for tests that rely on PHP `<7.4`. Github released base image `ubuntu-latest` which uses `ubuntu-20.04` - the 20.04 does not have PHP 7.0 - 7.3. Previously, `ubuntu-latest` was based on `ubuntu-18.04` In maker this caused our stable tests against 7.1, .2 & .3 to fail with a PDO Driver Error. Which is ultimately because the base 18.04 image does not have the required PHP version. Commits ------- ecfb759 [CI] run tests on ubuntu 18.04
2 parents 827e153 + ecfb759 commit af91f01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
coding-standards:
1616
name: "Coding Standards (${{ matrix.php-version }})"
1717

18-
runs-on: "ubuntu-latest"
18+
runs-on: "ubuntu-18.04"
1919

2020
strategy:
2121
fail-fast: false
@@ -52,7 +52,7 @@ jobs:
5252
test:
5353
name: "PHP ${{ matrix.php-version }} + symfony/skeleton@${{ matrix.symfony-skeleton-stability }}"
5454

55-
runs-on: ubuntu-latest
55+
runs-on: ubuntu-18.04
5656

5757
services:
5858
mysql:

0 commit comments

Comments
 (0)