A lot of changes for 1.7.0 #7
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: Linux OpenVino native build | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
ref: ${{ github.head_ref }} | |
- name: Install aarch64-linux-gnu-gcc | |
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu && sudo apt-get install -y g++-aarch64-linux-gnu | |
- name: Install gcc-arm-linux-gnueabihf | |
run: sudo apt-get update && sudo apt-get install -y gcc-arm-linux-gnueabihf && sudo apt-get install -y g++-arm-linux-gnueabihf | |
- name: Run linux | |
run: | | |
wget https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.4/linux/l_openvino_toolkit_ubuntu20_2024.4.0.16579.c3152d32c9c_x86_64.tgz -O openvino.tgz | |
mkdir openvino | |
tar -xvf openvino.tgz -C openvino | |
source openvino/l_openvino_toolkit_ubuntu20_2024.4.0.16579.c3152d32c9c_x86_64/setupvars.sh | |
make linux_x64_openvino | |
- name: Upload Linux OpenVino Build Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: linux-openvino-build | |
path: 'Whisper.net.Run*/linux-*/*' |