diff options
| -rw-r--r-- | .github/workflows/distributions.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/distributions.yml b/.github/workflows/distributions.yml index 447dcac..3b90fee 100644 --- a/.github/workflows/distributions.yml +++ b/.github/workflows/distributions.yml | |||
| @@ -76,15 +76,19 @@ jobs: | |||
| 76 | - name: Remove php8 tests for php7 | 76 | - name: Remove php8 tests for php7 |
| 77 | run: rm -rf src/tests/*php8*/ | 77 | run: rm -rf src/tests/*php8*/ |
| 78 | - name: Install dependencies | 78 | - name: Install dependencies |
| 79 | continue-on-error: true | ||
| 79 | run: | | 80 | run: | |
| 80 | pacman --sync --refresh --noconfirm --quiet php wget autoconf gcc make | 81 | pacman --sync --refresh --noconfirm --quiet php wget autoconf gcc make |
| 81 | wget https://pear.php.net/go-pear.phar | 82 | wget https://pear.php.net/go-pear.phar |
| 82 | php go-pear.phar | 83 | php go-pear.phar |
| 83 | - name: Install pecl | 84 | - name: Install pecl |
| 85 | continue-on-error: true | ||
| 84 | run: pecl install vld-beta | 86 | run: pecl install vld-beta |
| 85 | - name: Build and run the testsuite | 87 | - name: Build and run the testsuite |
| 88 | continue-on-error: true | ||
| 86 | run: make tests | 89 | run: make tests |
| 87 | - name: Show logs in case of failure | 90 | - name: Show logs in case of failure |
| 91 | continue-on-error: true | ||
| 88 | if: ${{ failure() }} | 92 | if: ${{ failure() }} |
| 89 | run: | | 93 | run: | |
| 90 | grep -r . ./src/tests/*/*.out | 94 | grep -r . ./src/tests/*/*.out |
