mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
ci: use macos 11 for build and test
This commit is contained in:
parent
02588e78c7
commit
19c07f7d79
2 changed files with 3 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -6,7 +6,7 @@ jobs:
|
|||
build:
|
||||
if: "${{ !contains(github.event.head_commit.message, '[skip build]') }}"
|
||||
name: ${{ matrix.config.name }}
|
||||
runs-on: "macos-10.15"
|
||||
runs-on: "macos-11"
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
|
@ -5,11 +5,10 @@ on: [push, pull_request]
|
|||
jobs:
|
||||
test:
|
||||
if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}"
|
||||
runs-on: "macos-10.15"
|
||||
runs-on: "macos-11"
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
# Remove SDKROOT when 11.0+ SDK will become the default one
|
||||
SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk ./build.py --target=test-deps
|
||||
./build.py --target=test-deps
|
||||
|
|
Loading…
Reference in a new issue