-
Notifications
You must be signed in to change notification settings - Fork 74
46 lines (44 loc) · 1.21 KB
/
build-dev.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
35
36
37
38
39
40
41
42
43
44
45
46
name: Dev Build
on:
workflow_dispatch:
inputs:
dry_run:
description: "Dry run"
type: boolean
default: true
upgrade_cairols:
description: "Upgrade CairoLS"
type: boolean
default: false
upgrade_cairolint:
description: "Upgrade CairoLint"
type: boolean
default: false
# upgrade_stwo:
# description: "Upgrade Stwo"
# type: boolean
# default: false
include-cairols:
description: "Include CairoLS in build"
type: boolean
default: true
include-stwo:
description: "Include Stwo in build"
type: boolean
default: true
include-lint:
description: "Include CairoLint in build"
type: boolean
default: true
jobs:
dev-build:
uses: ./.github/workflows/nightly.yml
with:
dry_run: ${{ inputs.dry_run }}
upgrade_cairols: ${{ inputs.upgrade_cairols }}
upgrade_cairolint: ${{ inputs.upgrade_cairolint }}
#upgrade_stwo: ${{ inputs.upgrade_stwo }}
include-cairols: ${{ inputs.include-cairols }}
include-stwo: ${{ inputs.include-stwo }}
include-lint: ${{ inputs.include-lint }}
is_dev: true