temporary solution for old default sdk in test workflow

This commit is contained in:
alexey.lysiuk 2020-12-26 12:40:31 +02:00
parent 83971168e3
commit b40ae87b15
1 changed files with 8 additions and 4 deletions

View File

@ -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