-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
46 lines (43 loc) · 1.34 KB
/
Copy pathbuild-assembly-processor.yml
File metadata and controls
46 lines (43 loc) · 1.34 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
name: Build Assembly Processor
on:
workflow_dispatch:
inputs:
build-type:
description: Build Configuration
default: Debug
type: choice
options:
- Debug
- Release
workflow_call:
inputs:
build-type:
default: Debug
type: string
concurrency:
group: build-assembly-processor-${{ github.event.pull_request.number || github.ref }}-${{ github.event.inputs.build-type || inputs.build-type || 'Debug' }}
cancel-in-progress: true
jobs:
#
# Build Assembly Processor
#
Assembly-Processor:
name: Assembly Processor (${{ github.event.inputs.build-type || inputs.build-type || 'Debug' }})
runs-on: windows-2025-vs2026
steps:
# Bootstrap .github so the local composite action below is resolvable pre-checkout.
- uses: actions/checkout@v4
with:
sparse-checkout: .github
- uses: ./.github/actions/stride-checkout
with:
ref: ${{ github.ref }}
exclude: samples
- name: Build
run: |
dotnet build build\Stride.AssemblyProcessor.sln `
-restore -nr:false `
-v:m -p:WarningLevel=0 `
-p:Configuration=${{ github.event.inputs.build-type || inputs.build-type || 'Debug' }} `
-p:StrideSkipUnitTests=true `
-p:StrideSkipAutoPack=true