-
Notifications
You must be signed in to change notification settings - Fork 183
171 lines (160 loc) · 5.06 KB
/
all.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: Build and Distribute Sofia-Sip
on:
push:
branches: [ master ]
paths:
- "**"
- "!debian/changelog"
workflow_dispatch:
concurrency:
group: ${{ github.head_ref || github.ref }}
jobs:
sofia_build_rpm:
name: 'Build Rpm'
uses: s3rj1k/actions-template/.github/workflows/ci-rpm-packages.yml@ci-deb-packages
with:
PROJECT_NAME: sofia-sip
RUNNER: ubuntu-latest
PACKAGER: 'packager Andrey Volk <[email protected]>'
PLATFORM: amd64
secrets: inherit
sofia_build_deb:
name: 'Build Deb'
uses: s3rj1k/actions-template/.github/workflows/ci-deb-packages-v2.yml@ci-deb-packages
strategy:
fail-fast: false
matrix:
distro_codename:
- bookworm
- bullseye
- buster
- stretch
platform:
- amd64
- arm
with:
PROJECT_NAME: sofia-sip
RUNNER: ubuntu-latest
BASE_IMAGE: signalwire/build-deb-action
DISTRO_CODENAME: ${{ matrix.distro_codename }}
PLATFORM: ${{ matrix.platform }}
generate_meta_deb:
name: 'Meta DEB'
needs: [ sofia_build_deb ]
strategy:
matrix:
distro_codename:
- bookworm
- bullseye
- buster
- stretch
platform:
- amd64
- arm
uses: s3rj1k/actions-template/.github/workflows/ci-libs-metadata-v2.yml@ci-deb-packages
with:
ARTIFACT_NAME: deb-${{ matrix.distro_codename }}-${{ matrix.platform }}-artifact
OS_PLATFORM: deb-${{ matrix.platform }}
RUNNER: ubuntu-latest
FILE_PATH_PREFIX: /var/www/sofia-deb-${{ matrix.platform }}/${{ github.run_id }}-${{ github.run_number }}
generate_meta_rpm:
name: 'Meta RPM'
needs: [ sofia_build_rpm ]
strategy:
matrix:
platform:
- amd64
uses: s3rj1k/actions-template/.github/workflows/ci-libs-metadata-v2.yml@ci-deb-packages
with:
ARTIFACT_NAME: rpm-${{ matrix.platform }}-artifact
OS_PLATFORM: rpm-${{ matrix.platform }}
RUNNER: ubuntu-latest
FILE_PATH_PREFIX: /var/www/sofia-rpm-${{ matrix.platform }}/${{ github.run_id }}-${{ github.run_number }}
distribute_matrix:
if: github.ref == 'refs/heads/main'
permissions: write-all
name: 'Copy to remote'
needs: [ sofia_build_rpm, sofia_build_deb ]
strategy:
matrix:
os_platform:
- deb-amd64
- deb-arm
- rpm-amd64
uses: s3rj1k/actions-template/.github/workflows/cd-scp.yml@ci-deb-packages
with:
ARTIFACT_NAME: ${{ matrix.os_platform }}-artifact
TARGET_FOLDER: /var/www/sofia-${{ matrix.os_platform }}/${{ github.run_id }}-${{ github.run_number }}
RUNNER: ubuntu-latest
FILES: '*.tar.gz'
CREATE_DESTINATION_FOLDERS: true
secrets:
# Explicit define secrets for better understanding but it could be just inherit
PROXY_URL: ${{ secrets.PROXY_URL }}
USERNAME: ${{ secrets.USERNAME }}
HOSTNAME: ${{ secrets.HOSTNAME }}
TELEPORT_TOKEN: ${{ secrets.TELEPORT_TOKEN }}
distribute_meta_deb:
if: github.ref == 'refs/heads/main'
permissions: write-all
name: 'Copy meta to remote'
needs: generate_meta
strategy:
matrix:
os:
- deb
platform:
- amd64
- arm
uses: s3rj1k/actions-template/.github/workflows/cd-libs-metadata.yml@ci-deb-packages
with:
ARTIFACT_NAME: ${{ matrix.os }}-${{ matrix.platform }}-meta
LIB_NAME: sofia-sip
TARGET_OS: ${{ matrix.os }}
TARGET_PLATFORM: ${{ matrix.platform }}
RUNNER: ubuntu-latest
TARGET_REPO: signalwire/bamboo_gha_trigger
secrets:
GH_BOT_DEPLOY_TOKEN: ${{ secrets.PAT }}
distribute_meta_rpm:
if: github.ref == 'refs/heads/main'
permissions: write-all
name: 'Copy meta to remote'
needs: generate_meta
strategy:
matrix:
os:
- rpm
platform:
- amd64
uses: s3rj1k/actions-template/.github/workflows/cd-libs-metadata.yml@ci-deb-packages
with:
ARTIFACT_NAME: ${{ matrix.os }}-${{ matrix.platform }}-meta
LIB_NAME: sofia-sip
TARGET_OS: ${{ matrix.os }}
TARGET_PLATFORM: ${{ matrix.platform }}
RUNNER: ubuntu-latest
TARGET_REPO: signalwire/bamboo_gha_trigger
secrets:
GH_BOT_DEPLOY_TOKEN: ${{ secrets.PAT }}
distribute_hash:
if: github.ref == 'refs/heads/main'
permissions: write-all
name: 'Copy hash to remote'
needs: [ distribute_meta_deb, distribute_meta_rpm ]
uses: s3rj1k/actions-template/.github/workflows/cd-scp.yml@ci-deb-packages
strategy:
matrix:
os_platform:
- deb-amd64
- deb-arm
- rpm-amd64
with:
RUNNER: ubuntu-latest
CREATE_DESTINATION_FOLDERS: false
EXEC_COMMANDS: 'echo "${{ github.sha }}" > /var/www/sofia-${{ matrix.os_platform }}/${{ github.run_id }}-${{ github.run_number }}/hash.txt'
secrets:
PROXY_URL: ${{ secrets.PROXY_URL }}
USERNAME: ${{ secrets.USERNAME }}
HOSTNAME: ${{ secrets.HOSTNAME }}
TELEPORT_TOKEN: ${{ secrets.TELEPORT_TOKEN }}