Fixed building nuget runtime package for Ubuntu arm64. #371
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu TF Android Builder | |
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 TF Android native binary | |
run: ./build_tf_android arm64 arm64-v8a | |
working-directory: ${{ github.workspace }}/platforms/android |