Fixed cpuinfo package when compiling tflite using cmake for raspberry… #186
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 Lite 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: clean up the source folder | |
run: miscellaneous/git-clean | |
- name: Build Emgu TF Lite Android arm64-v8a native binary | |
run: ./platforms/android/build_tflite_android arm64 arm64-v8a |