-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (48 loc) · 1.2 KB
/
build_SKA_SDP_Func_Python.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
51
52
name: SKA SDP Func Python Wrapper
on:
workflow_dispatch:
inputs:
label:
type: string
default: "main"
required: true
dev:
type: boolean
required: false
default: false
devDeps:
type: string
required: false
default: "SKA_SDP_DTMDL_VERSION, SKA_SDP_FUNC_VERSION"
buildNumber:
type: string
required: true
workflow_call:
inputs:
label:
type: string
required: true
dev:
type: boolean
required: false
default: false
devDeps:
type: string
required: false
default: "SKA_SDP_DTMDL_VERSION, SKA_SDP_FUNC_VERSION"
buildNumber:
type: string
required: true
jobs:
SKA_SDP_Func_Python_Wrapper:
uses: ./.github/workflows/build_base.yml
with:
packageName: ska-sdp-func-python
packageVersion: $SKA_SDP_FUNC_PY_VERSION
packageVersionName: SKA_SDP_FUNC_PY_VERSION
pythonCall: from ska_sdp_func_python import *
label: ${{ inputs.label }}
dev: ${{ inputs.dev }}
devDeps: ${{ inputs.devDeps }}
buildNumber: ${{ inputs.buildNumber }}
secrets: inherit