From 89f285b959ffa006f212b75051db432633d57816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ewilan=20Rivi=C3=A8re?= Date: Thu, 21 Nov 2024 15:05:42 +0100 Subject: [PATCH] Comment out steps for adding and checking the rar extension in macOS workflow --- .github/workflows/run-macos.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/run-macos.yml b/.github/workflows/run-macos.yml index 2ad8178..a5297b0 100644 --- a/.github/workflows/run-macos.yml +++ b/.github/workflows/run-macos.yml @@ -36,26 +36,26 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-interaction - - name: Add rar extension - run: | - git clone https://github.com/cataphract/php-rar - cd php-rar - phpize - ./configure - sudo make - sudo make install - pecl_path=$(pecl config-get ext_dir) - phpini_path=$(php -i | grep /.+/php.ini -oE) - sudo cp ./modules/rar.so $pecl_path - sudo echo "extension=rar.so" > $phpini_path + # - name: Add rar extension + # run: | + # git clone https://github.com/cataphract/php-rar + # cd php-rar + # phpize + # ./configure + # sudo make + # sudo make install + # pecl_path=$(pecl config-get ext_dir) + # phpini_path=$(php -i | grep /.+/php.ini -oE) + # sudo cp ./modules/rar.so $pecl_path + # sudo echo "extension=rar.so" > $phpini_path - name: Create .env file run: | cp .env.example .env shell: bash - - name: Check extension rar - run: php -m | grep rar + # - name: Check extension rar + # run: php -m | grep rar - name: Check extension imagick run: php -m | grep imagick