-
Notifications
You must be signed in to change notification settings - Fork 6
34 lines (30 loc) · 1.11 KB
/
wrapper_windows_build.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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# © 2023 Floorp Projects & Contributors
name: "(A) ⚒ Windows build"
on:
workflow_dispatch:
inputs:
release:
type: boolean
required: true
debug:
type: boolean
required: true
package-moz-artifact:
type: boolean
required: true
code-coverage:
type: boolean
required: true
run-name: Windows x64 build${{toJSON(inputs.debug) == 'true' && ' Debug' || ''}}${{toJSON(inputs.release) == 'true' && ' Release' || ''}}${{toJSON(inputs.package-moz-artifact) == 'true' && ' Moz-Artifact' || ''}}${{toJSON(inputs.code-coverage)=='true'&&' codecov'||''}}
jobs:
run-main:
name: win-x64
uses: ./.github/workflows/windows_build.yml
with:
debug: ${{inputs.debug}}
package-moz-artifact: ${{inputs.package-moz-artifact}}
release: ${{inputs.release}}
code-coverage: ${{inputs.code-coverage}}