Bump tensorflow from 1.15.4 to 2.12.1 in /model_tools/tools/tensorflow2caffe #387
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: linux-android-armv8 | |
on: [push, pull_request] | |
jobs: | |
linux: | |
name: linux-android-armv8 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: compile armv8 with llvm on linux | |
run: | | |
mkdir android_ndk && cd android_ndk | |
wget https://dl.google.com/android/repository/android-ndk-r20b-linux-x86_64.zip > /dev/null | |
unzip -o android-ndk-r20b-linux-x86_64.zip > /dev/null | |
export ANDROID_NDK_ROOT=${PWD}/android-ndk-r20b | |
export PATH=${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH | |
cd .. | |
chmod +x install.sh | |
./install.sh --target=android-aarch64 --gpu |