-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
270 lines (244 loc) · 9.27 KB
/
action.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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
name: 'Publish Allure report to NeoFS'
description: 'This action allows you to publish Allure reports to NeoFS.'
author: 'Neo SPCC'
branding:
icon: 'server'
color: 'green'
inputs:
NEOFS_WALLET:
description: N3 wallet for NeoFS network access
required: true
NEOFS_WALLET_PASSWORD:
description: N3 wallet password
required: true
NEOFS_NETWORK_DOMAIN:
description: Rpc endpoint domain address
required: false
default: 'st1.storage.fs.neo.org'
NEOFS_HTTP_GATE:
description: HTTP Gateway domain address
required: false
default: 'http.fs.neo.org'
STORE_OBJECTS_CID:
description: Container ID for your data
required: true
PR_LIFETIME:
description: Expiration period for PRs in epochs
required: false
default: 0
MASTER_LIFETIME:
description: Expiration period for master branch in epochs
required: false
default: 0
MANUAL_RUN_LIFETIME:
description: Expiration period for manual runs in epochs
required: false
default: 0
OTHER_LIFETIME:
description: Expiration period for other events in epochs
required: false
default: 0
ALLURE_RESULTS_DIR:
description: Path to Allure result
required: true
ALLURE_GENERATED_DIR:
description: Path to store Allure generated report
required: false
default: './tests/neofs-test-allure-generated-report'
outputs:
REPORT_NEOFS_URL:
description: Container URL
value: ${{ steps.gh_push_to_neofs.outputs.OUTPUT_CONTAINER_URL }}${{ github.run_number }}-${{ steps.date.outputs.timestamp }}/
COMBINED_REPORT_DIR:
description: Path to the directory with the combined Allure report and zip attachments
value: ${{ steps.set_report_dir.outputs.REPORT_DIR }}
runs:
using: composite
steps:
- name: Get the current date
id: date
shell: bash
run: |
echo "timestamp=$(date +%s)" >> $GITHUB_OUTPUT
- name: Set combined Allure report directory
id: set_report_dir
shell: bash
env:
TIMESTAMP: ${{ steps.date.outputs.timestamp }}
run: |
echo "REPORT_DIR=${GITHUB_WORKSPACE}/${{ github.run_number }}-$TIMESTAMP" >> $GITHUB_ENV
echo "REPORT_DIR=${GITHUB_WORKSPACE}/${{ github.run_number }}-$TIMESTAMP" >> $GITHUB_OUTPUT
- name: Set attributes
shell: bash
env:
TIMESTAMP: ${{ steps.date.outputs.timestamp }}
run: |
echo "NEOFS_ATTRIBUTES=RunNumber=${{ github.run_number }}-$TIMESTAMP,Type=neofs_test_files" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.6'
- name: Install allure-combine
shell: bash
run: |
pip install allure-combine
- name: Download latest stable neofs-cli for lifetime definition
uses: dsaltares/fetch-gh-release-asset@1.1.1
with:
repo: 'nspcc-dev/neofs-node'
version: 'tags/v0.38.1'
file: 'neofs-cli-amd64'
target: 'neofs/neofs-cli'
- name: Chmod latest stable neofs-cli
shell: bash
run: |
sudo chmod a+x neofs-cli
working-directory: neofs
- name: Enable stable neofs-cli
shell: bash
run: |
echo "$(pwd)" >> $GITHUB_PATH
working-directory: neofs
- name: Define lifetime
shell: bash
env:
NEOFS_NETWORK_DOMAIN: ${{ inputs.NEOFS_NETWORK_DOMAIN }}
MASTER_LIFETIME: ${{ inputs.MASTER_LIFETIME }}
PR_LIFETIME: ${{ inputs.PR_LIFETIME }}
MANUAL_RUN_LIFETIME: ${{ inputs.MANUAL_RUN_LIFETIME }}
OTHER_LIFETIME: ${{ inputs.OTHER_LIFETIME }}
run: |
if [[ "${{ github.event_name }}" == "push" ]]; then
LIFETIME="$MASTER_LIFETIME"
elif [[ "${{ github.event_name }}" == "pull_request" ]]; then
LIFETIME="$PR_LIFETIME"
elif [[ "${{ github.event_name }}" == "release" ]]; then
LIFETIME=0 # For test reports from releases - no LIFETIME period
elif [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
LIFETIME="$MANUAL_RUN_LIFETIME"
else
LIFETIME="$OTHER_LIFETIME"
fi
echo "LIFETIME=$LIFETIME" >> $GITHUB_ENV
- name: Add github run url to Allure report
shell: bash
run: |
echo "GITHUB_WORKFLOW_URL=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" > ${{ inputs.ALLURE_RESULTS_DIR }}/environment.properties
- name: Set allure history directory
id: set_history_dir
shell: bash
run: |
HISTORY_DIR_NAME="${{ github.repository }}-${{ github.ref_name }}-${{ github.job }}-${{ runner.os }}"
HISTORY_DIR_NAME=$(echo "$HISTORY_DIR_NAME" | sed 's|/|-|g')
echo "HISTORY_DIR_NAME=$HISTORY_DIR_NAME" >> $GITHUB_ENV
echo "HISTORY_DIR_NAME=$HISTORY_DIR_NAME" >> $GITHUB_OUTPUT
echo "HISTORY_DIR=${GITHUB_WORKSPACE}/$HISTORY_DIR_NAME" >> $GITHUB_ENV
echo "HISTORY_DIR=${GITHUB_WORKSPACE}/$HISTORY_DIR_NAME" >> $GITHUB_OUTPUT
- name: Download previous Allure report history results
shell: bash
env:
NEOFS_HTTP_GATE: ${{ inputs.NEOFS_HTTP_GATE }}
STORE_OBJECTS_CID: ${{ inputs.STORE_OBJECTS_CID }}
ALLURE_RESULTS_DIR: ${{ inputs.ALLURE_RESULTS_DIR }}
run: |
wget "https://$NEOFS_HTTP_GATE/$STORE_OBJECTS_CID/$HISTORY_DIR_NAME/history.zip" . 2>/dev/null || true
if [ -f "history.zip" ]; then
mkdir $ALLURE_RESULTS_DIR/history
unzip history.zip -d $ALLURE_RESULTS_DIR/history/
fi
- name: Generate Allure report
uses: nspcc-dev/allure-report-action@v1.0
if: always()
id: allure-report
with:
keep_reports: 100000
allure_results: ${{ inputs.ALLURE_RESULTS_DIR }}
allure_report: ${{ inputs.ALLURE_GENERATED_DIR }}
allure_history: allure-history
- name: Add write permission to the generated Allure report directory
shell: bash
env:
ALLURE_GENERATED_DIR: ${{ inputs.ALLURE_GENERATED_DIR }}
run: |
sudo chmod -R a+rw "$ALLURE_GENERATED_DIR"
- name: Create a directory tree for the generated Allure report
shell: bash
run: |
mkdir -p "$REPORT_DIR"
- name: Сonvert the Allure report to static page
shell: bash
env:
ALLURE_GENERATED_DIR: ${{ inputs.ALLURE_GENERATED_DIR }}
REPORT_DIR: ${{ env.REPORT_DIR }}
run: |
allure-combine "$ALLURE_GENERATED_DIR" \
--dest "$REPORT_DIR" \
--remove-temp-files \
--auto-create-folders \
--ignore-utf8-errors
- name: Rename complete.html to index.html
shell: bash
env:
REPORT_DIR: ${{ env.REPORT_DIR }}
run: |
mv "$REPORT_DIR"/complete.html "$REPORT_DIR"/index.html
- name: Copy only zip attachments from the generated Allure report directory to the combined report directory
shell: bash
env:
SOURCE_DIR: ${{ inputs.ALLURE_GENERATED_DIR }}/data/attachments/
DEST_DIR: ${{ env.REPORT_DIR }}
ATTACHMENTS_DIR: ${{ env.REPORT_DIR }}/data/attachments/
run: |
mkdir -p "$ATTACHMENTS_DIR"
rsync -avm --include='*.zip' -f 'hide,! */' "$SOURCE_DIR" "$ATTACHMENTS_DIR"
echo "PATH_TO_FILES_DIR=$DEST_DIR" >> $GITHUB_ENV
- name: Run gh-push-to-neofs
id: gh_push_to_neofs
uses: nspcc-dev/gh-push-to-neofs@v0.3.0
with:
NEOFS_WALLET: ${{ inputs.NEOFS_WALLET }}
NEOFS_WALLET_PASSWORD: ${{ inputs.NEOFS_WALLET_PASSWORD }}
NEOFS_NETWORK_DOMAIN: ${{ inputs.NEOFS_NETWORK_DOMAIN }}
NEOFS_HTTP_GATE: ${{ inputs.NEOFS_HTTP_GATE }}
STORE_OBJECTS_CID: ${{ inputs.STORE_OBJECTS_CID }}
LIFETIME: ${{ env.LIFETIME }}
PATH_TO_FILES_DIR: ${{ env.PATH_TO_FILES_DIR }}
NEOFS_ATTRIBUTES: ${{ env.NEOFS_ATTRIBUTES }}
- name: Preserve history folder
shell: bash
env:
ALLURE_HISTORY_DIR: ${{ inputs.ALLURE_GENERATED_DIR }}/history
run: |
mkdir -p "$HISTORY_DIR"
cd $ALLURE_HISTORY_DIR
CURRENT_REPORT_URL="${{ steps.gh_push_to_neofs.outputs.OUTPUT_CONTAINER_URL }}${{ github.run_number }}-${{ steps.date.outputs.timestamp }}/index.html"
history_json=$(cat history.json)
updated_history_json=$(echo "$history_json" | jq --arg url "$CURRENT_REPORT_URL" '
to_entries |
map({
key: .key,
value: {
statistic: .value.statistic,
items: (.value.items | map(
if (.reportUrl | contains("http.t5.fs.neo.org"))
then .
else .reportUrl = ($url + "#testresult/" + .uid)
end
))
}
}) | from_entries
')
echo "$updated_history_json" > history.json
zip -r "$HISTORY_DIR/history.zip" ./*
- name: Push history to neofs
id: gh_push_history_to_neofs
uses: nspcc-dev/gh-push-to-neofs@v0.3.0
with:
NEOFS_WALLET: ${{ inputs.NEOFS_WALLET }}
NEOFS_WALLET_PASSWORD: ${{ inputs.NEOFS_WALLET_PASSWORD }}
NEOFS_NETWORK_DOMAIN: ${{ inputs.NEOFS_NETWORK_DOMAIN }}
NEOFS_HTTP_GATE: ${{ inputs.NEOFS_HTTP_GATE }}
STORE_OBJECTS_CID: ${{ inputs.STORE_OBJECTS_CID }}
LIFETIME: ${{ env.LIFETIME }}
PATH_TO_FILES_DIR: ${{ env.HISTORY_DIR }}
NEOFS_ATTRIBUTES: ${{ env.NEOFS_ATTRIBUTES }}