Fixed Android build + improved CI/CI with xharness + added AllRuntimes package #2
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
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
name: CI (Native + dotnet) | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
android: | ||
uses: ./.github/workflows/android-native-build.yml | ||
macos: | ||
uses: ./.github/workflows/macos-native-build.yml | ||
windows: | ||
uses: ./.github/workflows/windows-native-build.yml | ||
wasm: | ||
uses: ./.github/workflows/wasm-native-build.yml | ||
linux: | ||
uses: ./.github/workflows/linux-native-build.yml | ||
windows-cuda: | ||
uses: ./.github/workflows/windows-cuda-native-build.yml | ||
windows-vulkan: | ||
uses: ./.github/workflows/windows-vulkan-native-build.yml | ||
windows-openvino: | ||
uses: ./.github/workflows/windows-openvino-native-build.yml | ||
linux-cuda: | ||
uses: ./.github/workflows/linux-cuda-native-build.yml | ||
linux-openvino: | ||
uses: ./.github/workflows/linux-openvino-native-build.yml | ||
Check failure on line 42 in .github/workflows/build-all.yml GitHub Actions / .github/workflows/build-all.ymlInvalid workflow file
|
||
macos-coreml: | ||
uses: ./.github/workflows/macos-coreml-native-build.yml | ||
dotnet-build: | ||
needs: | ||
- android | ||
- macos | ||
- windows | ||
- wasm | ||
- linux | ||
uses: ./.github/workflows/dotnet.yml | ||