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.
 
 
 
 
 

34 lines
945 B

name: Ubuntu build.
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: [self-hosted, Linux, X64]
# 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: ./cmake_configure.sh
working-directory: ${{ github.workspace }}/platforms/ubuntu/20.04
- name: Build Emgu CV package binary
run: make package
working-directory: ${{ github.workspace }}/platforms/ubuntu/20.04/build/
- uses: actions/upload-artifact@v2
with:
name: emgucv-ubuntu-zip-package
path: ${{ github.workspace }}/platforms/ubuntu/20.04/build/*.zip
- uses: actions/upload-artifact@v2
with:
name: emgucv-ubuntu-nuget-package
path: ${{ github.workspace }}/platforms/nuget/*.nupkg