-
Notifications
You must be signed in to change notification settings - Fork 14
84 lines (79 loc) · 2.85 KB
/
pmm-easy-install.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: PMM Easy Install pipeline
on:
workflow_dispatch:
inputs:
pmm_ui_tests_branch:
description: 'pmm-ui-tests repository branch(CLI tests)'
default: 'v3'
required: false
type: string
qa_integration_branch:
description: 'qa-integration repository branch(for setup)'
default: 'v3'
required: false
type: string
pmm_server_image:
description: 'PMM Server docker image'
default: 'perconalab/pmm-server:3-dev-latest'
required: true
type: string
pmm_client_image:
description: 'pmm-client docker image'
default: 'perconalab/pmm-client:3-dev-latest'
required: false
type: string
workflow_call:
inputs:
pmm_ui_tests_branch:
required: false
type: string
qa_integration_branch:
required: false
type: string
pmm_server_image:
required: true
type: string
pmm_client_image:
required: false
type: string
jobs:
easy_install_ubuntu_amd64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ubuntu-noble' }}
easy_install_ol9_amd64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ol-9' }}
easy_install_ubuntu_arm64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04-arm' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ubuntu-noble' }}
easy_install_ol9_arm64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04-arm' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ol-9' }}