-
Notifications
You must be signed in to change notification settings - Fork 279
260 lines (231 loc) · 8.3 KB
/
samples-integration-test.yml
File metadata and controls
260 lines (231 loc) · 8.3 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
name: Samples Build Check
on:
pull_request:
paths:
- 'samples/**'
- '.github/workflows/samples-integration-test.yml'
push:
paths:
- 'samples/**'
- '.github/workflows/samples-integration-test.yml'
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
# ── Python Samples ──────────────────────────────────────────────────
python-samples:
runs-on: ${{ matrix.platform }}-latest
strategy:
fail-fast: false
matrix:
platform: [windows, macos]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
clean: true
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Configure pip for Azure Artifacts
run: |
pip config set global.index-url https://pkgs.dev.azure.com/aiinfra/PublicPackages/_packaging/ORT-Nightly/pypi/simple/
pip config set global.extra-index-url https://pypi.org/simple/
pip config set global.pre true
- name: Build and install SDK from source
working-directory: sdk/python
shell: pwsh
run: |
python -m pip install build
echo '__version__ = "0.0.0-dev"' > src/version.py
python -m build --wheel --outdir dist/
$wheel = (Get-ChildItem dist/*.whl | Select-Object -First 1).FullName
pip install $wheel
- name: Install sample dependencies
shell: pwsh
run: |
Get-ChildItem samples/python/*/requirements.txt -ErrorAction SilentlyContinue | ForEach-Object {
Write-Host "Installing dependencies for $($_.Directory.Name)..."
pip install -r $_.FullName
}
- name: Syntax check Python samples
shell: pwsh
run: |
$failed = @()
$samples = Get-ChildItem samples/python/*/src/app.py -ErrorAction SilentlyContinue
foreach ($sample in $samples) {
$name = $sample.Directory.Parent.Name
Write-Host "=== Checking: $name ==="
python -m py_compile $sample.FullName
if ($LASTEXITCODE -ne 0) {
Write-Host "FAILED: $name"
$failed += $name
} else {
Write-Host "OK: $name"
}
}
if ($failed.Count -gt 0) {
Write-Error "Failed syntax checks: $($failed -join ', ')"
exit 1
}
# ── JavaScript Samples ──────────────────────────────────────────────
js-samples:
runs-on: ${{ matrix.platform }}-latest
strategy:
fail-fast: false
matrix:
platform: [windows, macos]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
clean: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Setup .NET SDK for NuGet authentication
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Build SDK from source
working-directory: sdk/js
run: |
npm install
npm run build
npm link
- name: Syntax check JS samples
shell: pwsh
run: |
$failed = @()
# Find all sample app.js files (either in root or src/)
$samples = @()
$samples += Get-ChildItem samples/js/*/app.js -ErrorAction SilentlyContinue
$samples += Get-ChildItem samples/js/*/src/app.js -ErrorAction SilentlyContinue
foreach ($sample in $samples) {
$dir = if ($sample.Directory.Name -eq 'src') { $sample.Directory.Parent } else { $sample.Directory }
$name = $dir.Name
Write-Host "=== Checking: $name ==="
# Link SDK and install dependencies
Push-Location $dir.FullName
npm link foundry-local-sdk 2>$null
if (Test-Path "package.json") { npm install 2>$null }
Pop-Location
# Syntax check
node --check $sample.FullName 2>&1
if ($LASTEXITCODE -ne 0) {
Write-Host "FAILED: $name"
$failed += $name
} else {
Write-Host "OK: $name"
}
}
if ($failed.Count -gt 0) {
Write-Error "Failed syntax checks: $($failed -join ', ')"
exit 1
}
# ── C# Samples ─────────────────────────────────────────────────────
cs-samples:
runs-on: ${{ matrix.platform }}-latest
strategy:
fail-fast: false
matrix:
platform: [windows, macos]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
clean: true
- name: Setup .NET SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
- name: Build SDK from source
shell: pwsh
run: |
# Build cross-platform SDK package
# Note: /p:TreatWarningsAsErrors=false avoids failing on SDK doc warnings
dotnet pack sdk/cs/src/Microsoft.AI.Foundry.Local.csproj `
-o local-packages `
/p:Version=0.9.0-dev `
/p:IsPacking=true `
/p:TreatWarningsAsErrors=false `
--configuration Release
# Build WinML SDK package (Windows only)
if ($IsWindows) {
dotnet pack sdk/cs/src/Microsoft.AI.Foundry.Local.csproj `
-o local-packages `
/p:Version=0.9.0-dev-20260324 `
/p:UseWinML=true `
/p:IsPacking=true `
/p:TreatWarningsAsErrors=false `
--configuration Release
}
Write-Host "Local packages:"
Get-ChildItem local-packages/*.nupkg | ForEach-Object { Write-Host " $($_.Name)" }
- name: Build C# samples
shell: pwsh
run: |
$failed = @()
$projects = Get-ChildItem samples/cs -Recurse -Filter "*.csproj"
foreach ($proj in $projects) {
$name = $proj.BaseName
Write-Host "`n=== Building: $name ==="
dotnet build $proj.FullName --configuration Debug 2>&1
if ($LASTEXITCODE -ne 0) {
Write-Host "BUILD FAILED: $name"
$failed += $name
} else {
Write-Host "BUILD PASSED: $name"
}
}
if ($failed.Count -gt 0) {
Write-Error "Failed builds: $($failed -join ', ')"
exit 1
}
# ── Rust Samples ────────────────────────────────────────────────────
rust-samples:
runs-on: ${{ matrix.platform }}-latest
strategy:
fail-fast: false
matrix:
platform: [windows, macos]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
clean: true
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: samples/rust -> target
- name: Use crates.io directly
shell: pwsh
run: |
# Remove crates-io redirect in SDK (points to Azure Artifacts)
$configPath = "sdk/rust/.cargo/config.toml"
if (Test-Path $configPath) {
Remove-Item $configPath
Write-Host "Removed sdk/rust/.cargo/config.toml"
}
# Remove crates-io redirect in samples
$configPath = "samples/rust/.cargo/config.toml"
if (Test-Path $configPath) {
Remove-Item $configPath
Write-Host "Removed samples/rust/.cargo/config.toml"
}
- name: Build Rust samples workspace
working-directory: samples/rust
run: cargo build --workspace
- name: Clippy check
working-directory: samples/rust
run: cargo clippy --workspace -- -D warnings