fix arm int8 quant segmentation bug #302
Workflow file for this run
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: macos-ios-armv7 | |
on: [push, pull_request] | |
jobs: | |
linux: | |
name: macos-ios-armv7 | |
runs-on: macos-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: compile ios armv7 on macos | |
run: | | |
brew install gnu-getopt > /dev/null | |
echo 'export PATH="/usr/local/opt/gnu-getopt/bin:$PATH"' >> /Users/runner/.bash_profile | |
echo 'export FLAGS_GETOPT_CMD="$(brew --prefix gnu-getopt)/bin/getopt"' >> /Users/runner/.bash_profile | |
source /Users/runner/.bash_profile | |
export IOS_SDK_ROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk | |
chmod +x install.sh | |
./install.sh --target=ios-armv7 |