GitHub Actions: set macOS deployment target to 11.0 for .NET workflow
This commit is contained in:
parent
474dee9391
commit
32b8258af1
1 changed files with 2 additions and 1 deletions
3
.github/workflows/dotnet.yml
vendored
3
.github/workflows/dotnet.yml
vendored
|
|
@ -2,6 +2,7 @@ name: .NET
|
|||
on: push
|
||||
env:
|
||||
BUILD_TYPE: Release
|
||||
OSX_DEPLOYMENT_TARGET: "11.0"
|
||||
|
||||
jobs:
|
||||
Linux:
|
||||
|
|
@ -48,7 +49,7 @@ jobs:
|
|||
- name: Cloning
|
||||
uses: actions/checkout@v5
|
||||
- name: Configure CMake
|
||||
run: cmake -B "${{github.workspace}}/build" -DRAGEPHOTO_C_LIBRARY=ON -DRAGEPHOTO_EXTRACT=OFF -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
|
||||
run: cmake -B "${{github.workspace}}/build" -DRAGEPHOTO_C_LIBRARY=ON -DRAGEPHOTO_EXTRACT=OFF -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_OSX_DEPLOYMENT_TARGET=${{env.OSX_DEPLOYMENT_TARGET}} -GNinja
|
||||
- name: Build
|
||||
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
||||
- name: Install
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue