mirror of https://github.com/emgucv/emgucv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
838 B
35 lines
838 B
name: Mac OS Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
# one day time out
|
|
timeout-minutes: 1440
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: '9.x'
|
|
- name: Install dotnet workload
|
|
run: dotnet workload install maui maccatalyst
|
|
- name: Build Emgu CV native binary
|
|
run: ./configure_x86_64
|
|
working-directory: ./platforms/macos/
|
|
- name: Build Emgu CV package (unsigned)
|
|
run: make package
|
|
working-directory: ./platforms/macos/build_x86_64/
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: emgucv-macos-zip-package
|
|
path: ${{ github.workspace }}/platforms/macos/build/*.zip
|