diff options
| author | jvoisin | 2021-02-11 18:30:14 +0100 |
|---|---|---|
| committer | jvoisin | 2021-02-11 18:30:14 +0100 |
| commit | 054dbbb83adc4eb0944a98a17dd7325743ed829c (patch) | |
| tree | 1d5056bc542af8da7b0a5de3ba4a19b4d9c2b524 /.github | |
| parent | c222255af058c8966e19b0325e4b53625a486848 (diff) | |
Allow failure for now on Alpine Linux
See https://bugs.archlinux.org/task/69563#comment196468 for details
Diffstat (limited to '.github')
| -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 |
