-
Notifications
You must be signed in to change notification settings - Fork 6
224 lines (204 loc) · 10.1 KB
/
ci.yml
File metadata and controls
224 lines (204 loc) · 10.1 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: CI
on:
push:
branches:
- master
- integration
- experimental*
- release_*
- ci*
- pci*
tags:
- v*
pull_request:
repository_dispatch:
types:
- metwork-trigger*
env:
DOCKER_RUN_OPTIONS: "-v ${{ github.workspace }}:/src -e GITHUB_REF -e GITHUB_RUN_NUMBER -e GITHUB_SHA -e GITHUB_REPOSITORY"
WORKFLOW_SCRIPTS_DIR: .github/workflows
DOCKER_WORKFLOW_SCRIPTS_DIR: /src/.github/workflows
PAYLOAD_BRANCH: ${{ github.event.client_payload.branch}}
PAYLOAD_OS: ${{ github.event.client_payload.os}}
jobs:
ci_build:
runs-on: ubuntu-latest
steps:
- name: Aggressive cleanup
#from https://dev.to/mathio/squeezing-disk-space-from-github-actions-runners-an-engineers-guide-3pjg
run: |
echo "available disk before"
df -h
# Remove Java (JDKs)
sudo rm -rf /usr/lib/jvm
# Remove .NET SDKs
sudo rm -rf /usr/share/dotnet
# Remove Swift toolchain
sudo rm -rf /usr/share/swift
# Remove Haskell (GHC)
sudo rm -rf /usr/local/.ghcup
# Remove Julia
sudo rm -rf /usr/local/julia*
# Remove Android SDKs
sudo rm -rf /usr/local/lib/android
# Remove Chromium (optional if not using for browser tests)
sudo rm -rf /usr/local/share/chromium
# Remove Microsoft/Edge and Google Chrome builds
sudo rm -rf /opt/microsoft /opt/google
# Remove Azure CLI
sudo rm -rf /opt/az
# Remove PowerShell
sudo rm -rf /usr/local/share/powershell
# Remove CodeQL and other toolcaches
sudo rm -rf /opt/hostedtoolcache
echo "available disk after"
df -h
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.client_payload.branch || github.ref }}
- name: set variables
id: SetVariables
run: |
${WORKFLOW_SCRIPTS_DIR}/set_variables.sh
- name: debug env
run: |
env
- name: bootstrap
if: ${{ steps.SetVariables.outputs.branch != 'null' }}
run: |
TARGET_DIR=${{ steps.SetVariables.outputs.target_dir }}
BRANCH=${{ steps.SetVariables.outputs.branch }}
OS_VERSION=${{ steps.SetVariables.outputs.os }}
TAG=${{ steps.SetVariables.outputs.tag }}
DEP_DIR=${{ steps.SetVariables.outputs.dep_dir }}
BUILDIMAGE=${{ steps.SetVariables.outputs.buildimage }}
docker pull ${BUILDIMAGE}
docker run ${DOCKER_RUN_OPTIONS} -e TARGET_DIR=${TARGET_DIR} -e BRANCH=${BRANCH} -e TAG=${TAG} -e DEP_DIR=${DEP_DIR} -e OS_VERSION=${OS_VERSION} --rm ${BUILDIMAGE} /bin/bash -c "${DOCKER_WORKFLOW_SCRIPTS_DIR}/bootstrap_ci.sh"
- name: build
if: ${{ steps.SetVariables.outputs.branch != 'null' }}
id: BuildStep
run: |
TARGET_DIR=${{ steps.SetVariables.outputs.target_dir }}
BRANCH=${{ steps.SetVariables.outputs.branch }}
OS_VERSION=${{ steps.SetVariables.outputs.os }}
TAG=${{ steps.SetVariables.outputs.tag }}
DEP_BRANCH=${{ steps.SetVariables.outputs.dep_branch }}
BUILDIMAGE=${{ steps.SetVariables.outputs.buildimage }}
docker pull ${BUILDIMAGE}
docker run ${DOCKER_RUN_OPTIONS} -e TARGET_DIR=${TARGET_DIR} -e BRANCH=${BRANCH} -e DEP_BRANCH=${DEP_BRANCH} -e TAG=${TAG} -e OS_VERSION=${OS_VERSION} --rm ${BUILDIMAGE} /bin/bash -c "${DOCKER_WORKFLOW_SCRIPTS_DIR}/build.sh"
cat ${{ github.workspace }}/github_output >> ${GITHUB_OUTPUT}
- name: publish buildlogs
if: ${{ github.event_name != 'pull_request' && steps.SetVariables.outputs.branch != 'null' }}
uses: yitianyigexiangfa/ssh-scp-ssh-pipelines@v1.1.5
env:
REMOTE: ${{ steps.SetVariables.outputs.buildlog_dir }}
LOCAL: ${{ github.workspace }}/buildlogs
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
first_ssh: |
mkdir -p ${REMOTE}
scp: |
'${LOCAL}/*' => ${REMOTE}
- name: integration tests
if: ${{ steps.SetVariables.outputs.branch != 'null' && steps.BuildStep.outputs.bypass == 'false' }}
run: |
TESTIMAGE=${{ steps.SetVariables.outputs.testimage }}
DEP_BRANCH=${{ steps.SetVariables.outputs.dep_branch }}
BRANCH=${{ steps.SetVariables.outputs.branch }}
OS_VERSION=${{ steps.SetVariables.outputs.os }}
docker pull ${TESTIMAGE}
docker run ${DOCKER_RUN_OPTIONS} -e DEP_BRANCH=${DEP_BRANCH} -e BRANCH=${BRANCH} -e OS_VERSION=${OS_VERSION} --rm ${TESTIMAGE} /bin/bash -c "${DOCKER_WORKFLOW_SCRIPTS_DIR}/integration_tests.sh"
- name: publish rpms
if: ${{ github.event_name != 'pull_request' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.branch != 'null' }}
uses: yitianyigexiangfa/ssh-scp-ssh-pipelines@v1.1.5
env:
REMOTE: ${{ steps.SetVariables.outputs.rpm_dir }}
LOCAL: ${{ github.workspace }}/rpms
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
first_ssh: |
mkdir -p ${REMOTE}
scp: |
'${LOCAL}/metwork-*.rpm' => ${REMOTE}
- name: createrepo
if: ${{ github.event_name != 'pull_request' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.branch != 'null' }}
uses: yitianyigexiangfa/ssh-scp-ssh-pipelines@v1.1.5
env:
REMOTE: ${{ steps.SetVariables.outputs.rpm_dir }}
LOCAL: ${{ github.workspace }}/.github/workflows
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
scp: |
'${LOCAL}/createrepo.sh' => ${REMOTE}
last_ssh: |
cd ${REMOTE}
chmod +x createrepo.sh
./createrepo.sh .
- name: publish doc
if: ${{ github.event_name != 'pull_request' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.branch != 'null' }}
uses: yitianyigexiangfa/ssh-scp-ssh-pipelines@v1.1.5
continue-on-error: true
env:
REMOTE: ${{ steps.SetVariables.outputs.doc_dir }}
LOCAL: ${{ github.workspace }}/html_doc
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
first_ssh: |
rm -rf ${REMOTE}
mkdir -p ${REMOTE}
scp: |
'${LOCAL}/*' => ${REMOTE}
- name: dispatch plugins rocky8 from rocky8 tag
if: ${{ github.ref_type == 'tag' && steps.SetVariables.outputs.branch != 'null' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.os == 'centos8' }}
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.METWORK_ACCESS_TOKEN }}
repository: metwork-framework/docker-mfxxx-plugins
event-type: metwork-trigger-${{ steps.SetVariables.outputs.branch }}
client-payload: '{"branch": "${{ steps.SetVariables.outputs.branch }}", "tag": "${{ github.ref_name }}", "repo": "mfserv", "rocky_version": "8"}'
- name: dispatch plugins rocky9 from rocky8 tag
if: ${{ github.ref_type == 'tag' && steps.SetVariables.outputs.branch != 'null' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.os == 'centos8' }}
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.METWORK_ACCESS_TOKEN }}
repository: metwork-framework/docker-mfxxx-plugins
event-type: metwork-trigger-${{ steps.SetVariables.outputs.branch }}
client-payload: '{"branch": "${{ steps.SetVariables.outputs.branch }}", "tag": "${{ github.ref_name }}", "repo": "mfserv", "rocky_version": "9"}'
- name: dispatch plugins rocky10 from rocky8 tag
if: ${{ github.ref_type == 'tag' && steps.SetVariables.outputs.branch != 'null' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.os == 'centos8' }}
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.METWORK_ACCESS_TOKEN }}
repository: metwork-framework/docker-mfxxx-plugins
event-type: metwork-trigger-${{ steps.SetVariables.outputs.branch }}
client-payload: '{"branch": "${{ steps.SetVariables.outputs.branch }}", "tag": "${{ github.ref_name }}", "repo": "mfserv", "rocky_version": "10"}'
- name: dispatch plugins buildimage rocky8 from rocky8
if: ${{ github.event_name != 'pull_request' && steps.SetVariables.outputs.skip_dispatch == 'false' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.os == 'centos8' }}
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.METWORK_ACCESS_TOKEN }}
repository: metwork-framework/docker-mfservplugins-centos8-buildimage
event-type: metwork-trigger-${{ steps.SetVariables.outputs.branch }}
client-payload: '{"branch": "${{ steps.SetVariables.outputs.branch }}", "os": "${{ steps.SetVariables.outputs.os }}"}'
- name: dispatch plugins buildimage rocky9 from rocky8
if: ${{ github.event_name != 'pull_request' && steps.SetVariables.outputs.skip_dispatch == 'false' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.os == 'centos8' }}
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.METWORK_ACCESS_TOKEN }}
repository: metwork-framework/docker-mfservplugins-rocky9-image
event-type: metwork-trigger-${{ steps.SetVariables.outputs.branch }}
client-payload: '{"branch": "${{ steps.SetVariables.outputs.branch }}", "os": "${{ steps.SetVariables.outputs.os }}"}'