Do not generate code coverage from multi-arch tests

Code coverage from multi-arch tests is not needed. Knowing if the tests
passes is enough.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2021-09-13 09:48:48 -03:00
parent 3f87370978
commit 9bf9ac3744
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -31,7 +31,6 @@ jobs:
# tcpdf allowed memory exhausted needs the memory_limit workaround
# musl-locales and musl-locales-lang are needed to run some locale specific tests
# gettext is needed to run generate-mo
# pcov for code coverage
# git is needed to workaround a version detection issue with composer, see: https://github.com/Roave/SecurityAdvisories/issues/76
run: |
printf "set -exu && \
@ -42,10 +41,9 @@ jobs:
php\$V-dom php\$V-json php\$V-bz2 php\$V-curl php\$V-gd php\$V-zip \
musl-locales musl-locales-lang \
gettext composer git && \
apk add --update --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing php\$V-pecl-pcov && \
composer update && \
./scripts/generate-mo && \
php -d memory_limit=512M ./vendor/bin/phpunit --testsuite unit --exclude-group=%s" \
php -d memory_limit=512M ./vendor/bin/phpunit --no-coverage --testsuite unit --exclude-group=%s" \
"${{ matrix.php-version }}" "${{ matrix.exclude-phpunit-groups }}" > ./do-tests.sh
- name: Setup multi arch support
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
@ -53,11 +51,6 @@ jobs:
run: docker run --rm ${{ matrix.arch }}/alpine:3.14 uname -a
- name: Run tests on php ${{ matrix.php-version }}
run: docker run -v $PWD:/app --workdir /app --rm ${{ matrix.arch }}/alpine:3.14 sh /app/do-tests.sh
- name: Send coverage
uses: codecov/codecov-action@v1
with:
flags: arch-${{ matrix.php-version }}-${{ matrix.arch }}
name: phpunit-${{ matrix.php-version }}-${{ matrix.arch }}
test-php:
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"