-
-
Notifications
You must be signed in to change notification settings - Fork 90
82 lines (65 loc) · 2.17 KB
/
build-all.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# 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"]
workflow_dispatch:
inputs:
BuildGpuLibs:
description: 'Enable GPU libraries build and publish'
required: true
default: 'false'
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
# windows-no-avx:
# uses: ./.github/workflows/windows-noavx-native-build.yml
# wasm:
# uses: ./.github/workflows/wasm-native-build.yml
# linux:
# uses: ./.github/workflows/linux-native-build.yml
# linux-no-avx:
# uses: ./.github/workflows/linux-noavx-native-build.yml
linux-vulkan:
uses: ./.github/workflows/linux-vulkan-native-build.yml
windows-cuda:
if: ${{ inputs.BuildGpuLibs == 'true' }}
uses: ./.github/workflows/windows-cuda-native-build.yml
windows-vulkan:
if: ${{ inputs.BuildGpuLibs == 'true' }}
uses: ./.github/workflows/windows-vulkan-native-build.yml
windows-openvino:
if: ${{ inputs.BuildGpuLibs == 'true' }}
uses: ./.github/workflows/windows-openvino-native-build.yml
linux-cuda:
if: ${{ inputs.BuildGpuLibs == 'true' }}
uses: ./.github/workflows/linux-cuda-native-build.yml
linux-openvino:
if: ${{ inputs.BuildGpuLibs == 'true' }}
uses: ./.github/workflows/linux-openvino-native-build.yml
macos-coreml:
if: ${{ inputs.BuildGpuLibs == 'true' }}
uses: ./.github/workflows/macos-coreml-native-build.yml
# dotnet-build:
# needs:
# - android
# - macos
# - windows
# - wasm
# - linux
# uses: ./.github/workflows/dotnet.yml
# dotnet-maui-build-and-test:
# needs:
# - android
# - macos
# - windows
# - wasm
# - linux
# uses: ./.github/workflows/dotnet-maui.yml