-
Notifications
You must be signed in to change notification settings - Fork 670
54 lines (50 loc) · 1.43 KB
/
validate-linux-packages.yml
File metadata and controls
54 lines (50 loc) · 1.43 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
name: Validate Linux Packages
# Manual trigger only - allows specifying package version and options
on:
workflow_dispatch:
inputs:
package_version:
description: 'Package version to validate (e.g., 2.4.8). Leave empty for latest.'
required: false
default: ''
type: string
skip_dotnet_tests:
description: 'Skip .NET QUIC tests'
required: false
default: false
type: boolean
testing_repo:
description: 'Use testing/preview packages from packages.microsoft.com'
required: false
default: false
type: boolean
config:
description: 'Build configuration for test artifacts'
required: false
default: 'Release'
type: choice
options:
- Release
- Debug
tls:
description: 'TLS provider for test artifacts'
required: false
default: 'quictls'
type: choice
options:
- quictls
- openssl
concurrency:
group: validate-linux-packages-${{ github.sha }}
cancel-in-progress: true
permissions: read-all
jobs:
validate:
name: Validate
uses: ./.github/workflows/validate-linux-packages-reuse.yml
with:
package_version: ${{ inputs.package_version }}
skip_dotnet_tests: ${{ inputs.skip_dotnet_tests }}
testing_repo: ${{ inputs.testing_repo }}
config: ${{ inputs.config }}
tls: ${{ inputs.tls }}