mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
ci: switch dependency testing to special target
This commit is contained in:
parent
e84f097385
commit
0e1301342e
1 changed files with 1 additions and 6 deletions
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
|
@ -5,16 +5,11 @@ on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
||||||
name: ${{ matrix.config.name }}
|
|
||||||
runs-on: "macos-latest"
|
runs-on: "macos-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Prepare
|
|
||||||
run: |
|
|
||||||
./build.py --target=clean-deps
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
# Remove SDKROOT when 11.0+ SDK will become the default one
|
# 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
|
||||||
|
|
Loading…
Reference in a new issue