From f16ef5ab5ae16418355fe501b7f7b7b5fbf476bb Mon Sep 17 00:00:00 2001 From: evgfilim1 Date: Fri, 19 Aug 2022 13:58:31 +0500 Subject: [PATCH] Try to fix uvloop build errors on macos-latest (2) --- .github/workflows/tests.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aeda7bef..f8c6b8ce 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -92,18 +92,10 @@ jobs: path: .venv key: venv-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ secrets.CACHE_VERSION }} - - name: Apply macos-specific workarounds when building uvloop on PyPy - if: > - matrix.os == 'macos-latest' - && startswith(matrix.python-version, 'pypy') - && steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | - set -eu - pip install -U pip - - name: Project dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: | + export CFLAGS="$CFLAGS -std=c11" poetry install --no-interaction -E fast -E redis -E proxy -E i18n -E docs - name: Lint code