-
Notifications
You must be signed in to change notification settings - Fork 12
47 lines (45 loc) · 1.77 KB
/
build.yml
File metadata and controls
47 lines (45 loc) · 1.77 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
---
name: Build openvoxdb
permissions:
contents: read # minimal required permissions to clone repo
on:
workflow_dispatch:
inputs:
branch:
description: 'The release branch to build from.'
type: choice
options:
- main
- '8.x'
default: 'main'
ref:
description: 'Tag to build'
required: true
deb_platform_list:
description: 'A comma-separated list of deb-based platforms to build for, excluding the architecture (e.g. ubuntu-24.04,debian-12). Do not include spaces. If not provided, will use the default list of platforms supported by OpenVox Server and DB.'
required: false
type: string
rpm_platform_list:
description: 'A comma-separated list of rpm-based platforms to build for, excluding the architecture (e.g. el-9,amazon-2023). Do not include spaces. If not provided, will use the default list of platforms supported by OpenVox Server and DB.'
required: false
type: string
ezbake-ref:
description: |-
Branch/tag from ezbake that will be used for openvoxdb/server builds.
type: string
default: 'main'
ezbake-ver:
description: 'The version specified in project.clj in the given ezbake-ref. Will default to the version found in project.clj in this repo if not specified.'
type: string
required: false
jobs:
build:
uses: 'openvoxproject/shared-actions/.github/workflows/build_ezbake.yml@main'
with:
branch: ${{ inputs.branch }}
ref: ${{ inputs.ref }}
deb_platform_list: ${{ inputs.deb_platform_list }}
rpm_platform_list: ${{ inputs.rpm_platform_list }}
ezbake-ref: ${{ inputs.ezbake-ref }}
ezbake-ver: ${{ inputs.ezbake-ver }}
secrets: inherit