Skip to content

Commit

Permalink
Fix yaml format
Browse files Browse the repository at this point in the history
  • Loading branch information
asispts committed Jan 26, 2025
1 parent 3310914 commit bcc81fc
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

# A temporary solution
- name: Install libxml2 >= 2.12 (PHP 8.1+ on linux only)
if: ${{ matrix.os == 'ubuntu-latest' && contains(fromJSON('["8.1", "8.2", "8.3"]'), matrix.php) }}
run: |
sudo apt-get update
sudo apt-get install -y wget build-essential
wget https://download.gnome.org/sources/libxml2/2.12/libxml2-2.12.9.tar.xz
tar -xf libxml2-2.12.9.tar.xz
cd libxml2-2.12.9
./configure --prefix=/usr/local
make
sudo make install
sudo ldconfig
# A temporary solution
- name: Install libxml2 >= 2.12 (PHP 8.1+ on linux only)
if: ${{ matrix.os == 'ubuntu-latest' && contains(fromJSON('["8.1", "8.2", "8.3"]'), matrix.php) }}
run: |
sudo apt-get update
sudo apt-get install -y wget build-essential
wget https://download.gnome.org/sources/libxml2/2.12/libxml2-2.12.9.tar.xz
tar -xf libxml2-2.12.9.tar.xz
cd libxml2-2.12.9
./configure --prefix=/usr/local
make
sudo make install
sudo ldconfig
- name: Setup ini config
id: set_ini
Expand Down

0 comments on commit bcc81fc

Please sign in to comment.