mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
temporary solution for old default sdk in test workflow
This commit is contained in:
parent
83971168e3
commit
b40ae87b15
1 changed files with 8 additions and 4 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue