aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-01-20 15:49:15 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-02-07 11:23:28 +0100
commit2d8e696c24fef754662ed20f17b5b52091491ac5 (patch)
treea92ed5e6c93c51407526cb7663788784fa96e00f /.github
parentb370fdb1e713f82ce02368ffa6aa4fd926edb8a8 (diff)
downloadnextcloud-server-2d8e696c24fef754662ed20f17b5b52091491ac5.tar.gz
nextcloud-server-2d8e696c24fef754662ed20f17b5b52091491ac5.zip
Add apcu and ffmpeg to have less skipped tests
Also exclude test groups which rely on a service Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit-32bits.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/phpunit-32bits.yml b/.github/workflows/phpunit-32bits.yml
index aa89cfb8bfc..763043082c8 100644
--- a/.github/workflows/phpunit-32bits.yml
+++ b/.github/workflows/phpunit-32bits.yml
@@ -24,13 +24,21 @@ jobs:
with:
submodules: true
+ - name: Install tools
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y ffmpeg imagemagick libmagickcore-6.q16-3-extra
+
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- extensions: ctype, curl, dom, fileinfo, gd, imagick, intl, json, mbstring, oci8, openssl, pdo_sqlite, posix, sqlite, xml, zip, apcu
+ extensions: ctype, curl, dom, fileinfo, gd, imagick, intl, json, mbstring, openssl, pdo_sqlite, posix, sqlite, xml, zip, apcu
tools: phpunit:9
coverage: none
+ ini-values:
+ apc.enabled=on,
+ apc.enable_cli=on
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -44,4 +52,4 @@ jobs:
- name: PHPUnit
working-directory: tests
- run: phpunit --configuration phpunit-autotest.xml
+ run: phpunit --configuration phpunit-autotest.xml --exclude-group PRIMARY-azure,PRIMARY-s3,PRIMARY-swift,Memcached,Redis