Skip to content

Commit

Permalink
Merge pull request #162 from jrushlow/ci/platform-ver
Browse files Browse the repository at this point in the history
[CI] run tests on ubuntu 18.04
  • Loading branch information
jrushlow authored Mar 12, 2021
2 parents 5833f09 + 9208bb3 commit 6825b9f
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
composer-validate:
name: Validate composer.json
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

steps:
- name: Checkout
Expand All @@ -19,7 +19,7 @@ jobs:

php-cs-fixer:
name: Lint Bundle Source
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

steps:
- name: Set PHP Version
Expand All @@ -35,7 +35,7 @@ jobs:

psalm:
name: Psalm Static Analysis
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

steps:
- name: Set PHP Version
Expand All @@ -52,7 +52,7 @@ jobs:

stable-tests:
name: Symfony Stable
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

strategy:
fail-fast: false
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:

dev-main-tests:
name: Symfony Main
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

strategy:
fail-fast: false
Expand All @@ -119,9 +119,6 @@ jobs:
- name: Set PHP Version
run: sudo update-alternatives --set php /usr/bin/php${{ matrix.php-versions }}

# - name: Disable Xdebug
# run: sudo rm /etc/php/${{ matrix.php-versions }}/cli/conf.d/20-xdebug.ini

- name: Get PHP Version
run: |
ver=$(php -v | grep -oP '(?<=PHP )\d.\d')
Expand Down Expand Up @@ -155,7 +152,7 @@ jobs:

lowest-version-tests:
name: Lowest dependencies
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

strategy:
fail-fast: false
Expand All @@ -166,9 +163,6 @@ jobs:
- name: Set PHP Version
run: sudo update-alternatives --set php /usr/bin/php${{ matrix.php-versions }}

# - name: Disable Xdebug
# run: sudo rm /etc/php/${{ matrix.php-versions }}/cli/conf.d/20-xdebug.ini

- name: Get PHP Version
run: |
ver=$(php -v | grep -oP '(?<=PHP )\d.\d')
Expand Down

0 comments on commit 6825b9f

Please sign in to comment.