diff options
author | MichaIng <micha@dietpi.com> | 2021-12-20 13:47:12 +0100 |
---|---|---|
committer | MichaIng <micha@dietpi.com> | 2021-12-31 17:32:43 +0100 |
commit | faeeb030204afd890f939f9e4547ef7f27382296 (patch) | |
tree | 87280e22656d91e7e367cc457be1d0684b83304b | |
parent | 2c50f85e2fba2e7dae3209d57448613cd8ca5948 (diff) | |
download | nextcloud-server-faeeb030204afd890f939f9e4547ef7f27382296.tar.gz nextcloud-server-faeeb030204afd890f939f9e4547ef7f27382296.zip |
Remove iconv from further tests
as of: https://github.com/nextcloud/server/pull/29470
Some tests were missing in: https://github.com/nextcloud/server/pull/29958
Signed-off-by: MichaIng <micha@dietpi.com>
-rw-r--r-- | .github/workflows/ftp.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 4 | ||||
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ftp.yml b/.github/workflows/ftp.yml index 87e66badd77..aa9fe3aad79 100644 --- a/.github/workflows/ftp.yml +++ b/.github/workflows/ftp.yml @@ -44,7 +44,7 @@ jobs: with: php-version: ${{ matrix.php-versions }} tools: phpunit - extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd + extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd - name: Set up Nextcloud run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3158b97e0c5..df24664ab8f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} - extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip + extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Lint run: composer run lint @@ -30,7 +30,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 - extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip + extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none tools: cs2pr - name: Install dependencies diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 0a2df0d71f9..31ee0f89fa2 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -17,7 +17,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 - extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip + extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Composer install run: composer i @@ -43,7 +43,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 - extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip + extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Composer install run: composer i |