Skip to content

A lot of changes for 1.7.0 #1

A lot of changes for 1.7.0

A lot of changes for 1.7.0 #1

name: Windows Vulkan 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: Install Vulkan SDK
uses: jakoch/[email protected]
with:
vulkan_version: 1.3.290.0
optional_components: com.lunarg.vulkan.vma
install_runtime: true
cache: true
stripdown: true
- name: Run linux
run: make linux_x64_vulkan
- name: Upload Windows Vulkan Build Artifacts
uses: actions/upload-artifact@v3
with:
name: windows-vulkan-build
path: 'Whisper.net.Run*/win-*/*'