-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (46 loc) · 1.24 KB
/
designs.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
47
48
49
50
on:
workflow_dispatch:
inputs:
sc-ref:
required: false
type: string
description: which siliconcompiler ref to use
lambdapdk-ref:
required: false
type: string
description: which lambdapdk ref to use
concurrency:
required: false
type: number
default: 50
description: how many concurrent runners to use
run:
required: false
type: choice
default: default
description: types of designs to run
options:
- all
- default
- tiny
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.sc-ref }}-${{ inputs.lambdapdk-ref }}
cancel-in-progress: true
name: 'Run Gallery Designs'
jobs:
designs:
uses: ./.github/workflows/run-designs.yml
with:
sc-ref: ${{ inputs.sc-ref }}
lambdapdk-ref: ${{ inputs.lambdapdk-ref }}
concurrency: ${{ fromJson(inputs.concurrency) }}
scgallery-ref: ${{ github.ref }}
fail-fast: false
run: ${{ inputs.run }}
secrets: inherit
update_montage:
name: Merge image artifacts
if: always() && !failure() && !cancelled()
needs: designs
uses: ./.github/workflows/montage.yml
secrets: inherit