summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/distributions_php7.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/.github/workflows/distributions_php7.yml b/.github/workflows/distributions_php7.yml
index cd65177..db23755 100644
--- a/.github/workflows/distributions_php7.yml
+++ b/.github/workflows/distributions_php7.yml
@@ -68,29 +68,3 @@ jobs:
68 if: ${{ failure() }} 68 if: ${{ failure() }}
69 run: | 69 run: |
70 grep -r . --include='*.log' src/tests 70 grep -r . --include='*.log' src/tests
71
72 archlinux:
73 runs-on: ubuntu-latest
74 container: archlinux:latest
75 steps:
76 - name: Checkout code
77 uses: actions/checkout@v3
78 - name: Remove php8 tests for php7
79 run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt
80 - name: Install dependencies
81 continue-on-error: true
82 run: |
83 pacman --sync --refresh --noconfirm --quiet php wget autoconf gcc make re2c
84 wget https://pear.php.net/go-pear.phar
85 php go-pear.phar
86 - name: Install pecl
87 continue-on-error: true
88 run: pecl install vld-beta
89 - name: Build SP and run the testsuite
90 continue-on-error: true
91 run: make tests
92 - name: Show logs in case of failure
93 continue-on-error: true
94 if: ${{ failure() }}
95 run: |
96 grep -r . --include='*.log' src/tests