From b40ae87b15fd7b216cdfce2542aff226c5d83871 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sat, 26 Dec 2020 12:40:31 +0200 Subject: [PATCH] temporary solution for old default sdk in test workflow --- .github/workflows/test.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0814ca12..e9681474 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,8 +8,12 @@ jobs: runs-on: "macos-latest" steps: - uses: actions/checkout@v1 - - name: Prepare - run: ./build.py --target=clean-deps - - name: Run tests - run: test/test.py + - name: Prepare + run: | + ./build.py --target=clean-deps + + - name: Run tests + run: | + # Remove SDKROOT when 11.0+ SDK will become the default one + SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk test/test.py