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.
30 lines
711 B
30 lines
711 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@v2
|
|
- name: Check out submodules
|
|
run: git submodule update --init --recursive
|
|
- 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/
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: emgucv-macos-zip-package
|
|
path: ${{ github.workspace }}/platforms/macos/build/*.zip
|