From 0e1301342e847d835dc8a4a502471b24ab989e51 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sat, 16 Jan 2021 15:24:10 +0200 Subject: [PATCH] ci: switch dependency testing to special target --- .github/workflows/test.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f79e6cd..6abf6424 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,16 +5,11 @@ on: [push, pull_request] jobs: build: if: "!contains(github.event.head_commit.message, '[skip ci]')" - name: ${{ matrix.config.name }} runs-on: "macos-latest" steps: - uses: actions/checkout@v1 - - 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 + SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk ./build.py --target=test-deps