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

How to enable xsl on php5.5 #281

Closed
2 of 5 tasks
yuta-ron opened this issue Aug 28, 2020 · 1 comment
Closed
2 of 5 tasks

How to enable xsl on php5.5 #281

yuta-ron opened this issue Aug 28, 2020 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@yuta-ron
Copy link

Describe the bug
I tried to enable php extention of xsl on php 5.5.
But occured following error.

name: test_and_lint
on:
  push

jobs:
  test:
    name: Test
    runs-on: ubuntu-20.04

    steps:
      - uses: actions/checkout@v2
      - name: install modules
        run: |
          sudo apt update
          sudo apt install libxml2-dev libxslt-dev php-xml
      - name: Installing php5.5
        uses: shivammathur/setup-php@v2
        with:
          php-version: "5.5"
          extensions: mbstring, soap, xsl

Image from Gyazo

But with php7.3 it succeses.

name: test_and_lint
on:
  push:

jobs:
  test:
    name: Test
    runs-on: ubuntu-20.04

    steps:
      - uses: actions/checkout@v2
      - name: install modules
        run: |
          sudo apt update
          sudo apt install libxml2-dev libxslt-dev php-xml
      - name: Installing php7.3
        uses: shivammathur/setup-php@v2
        with:
          php-version: "7.3"
          extensions: mbstring, soap, xsl

Image from Gyazo

Is this a bug?
Could you tell me how to resolve it?

Thanks.

Version

  • I have checked releases and the bug exists in the latest patch version of v1 or v2.
  • v2
  • v1

Runners

  • GitHub Hosted
  • Self Hosted

Operating systems

PHP versions

To Reproduce

Expected behavior

Screenshots/Logs

Additional context

Are you willing to submit a PR?

@yuta-ron yuta-ron added the bug Something isn't working label Aug 28, 2020
@shivammathur
Copy link
Owner

@yuta-ron Fixed in shivammathur/php5-ubuntu@a82c0c0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants