forked from 0xShug0/audio.cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (44 loc) · 1.06 KB
/
Copy pathwindows-build.yml
File metadata and controls
51 lines (44 loc) · 1.06 KB
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
name: windows-build
on:
push:
branches:
- ci/**
- main
- dev
- release-0.2
pull_request:
branches:
- main
- dev
- release-0.2
workflow_dispatch:
jobs:
build:
name: Windows CPU
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check loader/spec sync
shell: pwsh
run: |
python tools/check_loader_catalog_sync.py --self-test
python tools/check_loader_catalog_sync.py
- name: Build audiocpp_cli
shell: pwsh
run: |
.\scripts\build_windows.ps1 `
-Preset windows-cpu-release `
-Target audiocpp_cli
- name: Build audiocpp_server
shell: pwsh
run: |
.\scripts\build_windows.ps1 `
-Preset windows-cpu-release `
-Target audiocpp_server
- name: Build audiocpp_gguf
shell: pwsh
run: |
.\scripts\build_windows.ps1 `
-Preset windows-cpu-release `
-Target audiocpp_gguf