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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
|
name: Run build and tests (ya make)
description: Run test targets listed in repository root ya.make (to be created previously)
inputs:
build_target:
required: true
build_preset:
required: true
default: "relwithdebinfo"
description: "relwithdebinfo, release-asan, release-tsan"
test_type:
required: false
type: string
default: ""
description: "run only specific test types (or all by default)"
test_size:
required: false
default: "small,medium,large"
description: "small or small-medium or all"
test_threads:
required: false
default: "56"
description: "Test threads count"
link_threads:
required: false
default: "12"
description: "link threads count"
additional_ya_make_args:
type: string
default: ""
testman_token:
required: false
description: "test manager auth token"
testman_url:
required: false
description: "test manager endpoint"
testman_project_id:
required: false
description: "test manager project id"
increment:
type: boolean
required: true
description: If true, compares build graphs between the current and previous commits to find a list of test suites to run. Otherwise, runs all tests.
put_build_results_to_cache:
required: false
default: "true"
bazel_remote_uri:
required: false
description: "bazel-remote endpoint"
bazel_remote_username:
required: false
description: "bazel-remote username"
bazel_remote_password:
required: false
description: "bazel-remote password"
run_tests:
type: boolean
default: true
description: "run tests"
test_retry_count:
type: string
default: ""
description: "how many times to retry failed tests"
outputs:
success:
value: ${{ steps.build.outputs.status }}
description: "build success"
runs:
using: "composite"
steps:
- name: comment-build-start
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target'
shell: bash
env:
BUILD_PRESET: ${{ inputs.build_preset }}
GITHUB_TOKEN: ${{ github.token }}
run: |
jobs_url="https://api.github.com/repos/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}/jobs"
# tricky: we are searching job with name that contains build_preset
check_url=$(curl -s $jobs_url | jq --arg n "$BUILD_PRESET" -r '.jobs[] | select(.name | contains($n)) | .html_url')
platform_name="$(echo "$(uname -s)-$(uname -p)" | tr '[:upper:]' '[:lower:]')-$BUILD_PRESET"
echo "Pre-commit [check]($check_url) **$platform_name** for $(git rev-parse HEAD) has started." | .github/scripts/tests/comment-pr.py --rewrite
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"pending","description":"The check has been started","context":"build_${{inputs.build_preset}}"}'
if [[ "${{inputs.run_tests}}" == "true" ]]; then
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"pending","description":"The check has been started","context":"test_${{inputs.build_preset}}"}'
fi
- name: Clean ya cache
shell: bash
run: rm -rf ~/.ya
- name: Init
id: init
shell: bash
run: |
set -x
echo "$(pwd)/ydb/ci/scripts" >> $GITHUB_PATH
export TMP_DIR=$(pwd)/tmp
rm -rf $TMP_DIR
mkdir -p $TMP_DIR
echo "TMP_DIR=$TMP_DIR" >> $GITHUB_ENV
# The whole dir will be uploaded to s3 with public (=wild internet) ACL
export PUBLIC_DIR=$TMP_DIR/results
echo "PUBLIC_DIR=$PUBLIC_DIR" >> $GITHUB_ENV
export PUBLIC_DIR_URL=$S3_URL_PREFIX
echo "PUBLIC_DIR_URL=$PUBLIC_DIR_URL" >> $GITHUB_ENV
mkdir -p $PUBLIC_DIR
echo "LAST_JUNIT_REPORT_XML=$PUBLIC_DIR/last_junit.xml" >> $GITHUB_ENV
export TESTMO_URL=${{ inputs.testman_url }}
echo "TESTMO_URL=$TESTMO_URL" >> $GITHUB_ENV
echo "SUMMARY_LINKS=$PUBLIC_DIR/summary_links.txt" >> $GITHUB_ENV
echo "BUILD_PRESET=${{ inputs.build_preset }}" >> $GITHUB_ENV
python3 -m pip install ydb ydb[yc] codeowners humanize junitparser
if [ ${{ inputs.testman_token }} ]; then
TESTMO_PROXY_ADDR=127.0.0.1:8888
openssl req -x509 -newkey rsa:2048 \
-keyout $TMP_DIR/key.pem -out $TMP_DIR/cert.pem \
-sha256 -days 1 -nodes -subj "/CN=127.0.0.1"
TESTMO_TOKEN=${{ inputs.testman_token }} ./ydb/ci/testmo-proxy/testmo-proxy.py -l $TESTMO_PROXY_ADDR \
--cert-file "$TMP_DIR/cert.pem" \
--cert-key "$TMP_DIR/key.pem" \
--target-timeout 3,60 \
--max-request-time 200 \
"$TESTMO_URL" > $PUBLIC_DIR/testmo_proxy.log 2>&1 &
TESTMO_PROXY_PID=$!
echo "TESTMO_PROXY_ADDR=$TESTMO_PROXY_ADDR" >> $GITHUB_ENV
echo "TESTMO_PROXY_PID=$TESTMO_PROXY_PID" >> $GITHUB_ENV
# testmo rejects self-signed cert without this setting
echo "NODE_TLS_REJECT_UNAUTHORIZED=0" >> $GITHUB_ENV
fi
- name: Setup cache
shell: bash
run: |
export BAZEL_REMOTE_PASSWORD_FILE=$(mktemp)
echo -n "${{ inputs.bazel_remote_password }}" > $BAZEL_REMOTE_PASSWORD_FILE
echo "BAZEL_REMOTE_PASSWORD_FILE=$BAZEL_REMOTE_PASSWORD_FILE" >> $GITHUB_ENV
- name: ya build and test
id: build
shell: bash
run: |
set -ex
echo "Artifacts will be uploaded [here](${PUBLIC_DIR_URL}/index.html)" | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py
ORIGINAL_HEAD=$(git rev-parse HEAD)
if [ "${{ inputs.increment }}" = "true" ]; then
GRAPH_COMPARE_OUTPUT="$PUBLIC_DIR/graph_compare.log"
GRAPH_COMPARE_OUTPUT_URL="$PUBLIC_DIR_URL/graph_compare.log"
set +e
./.github/scripts/graph_compare.sh $ORIGINAL_HEAD~1 $ORIGINAL_HEAD |& tee $GRAPH_COMPARE_OUTPUT
RC=${PIPESTATUS[0]}
set -e
if [ $RC -ne 0 ]; then
echo "graph_compare.sh returned $RC, build failed"
echo "status=failed" >> $GITHUB_OUTPUT
BUILD_FAILED=1
echo "Graph compare failed, see the [logs]($GRAPH_COMPARE_OUTPUT_URL)." | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py --color red
exit $RC
fi
git checkout $ORIGINAL_HEAD
YA_MAKE_TARGET=.
else
YA_MAKE_TARGET=${{ inputs.build_target }}
fi
readarray -d ',' -t test_size < <(printf "%s" "${{ inputs.test_size }}")
readarray -d ',' -t test_type < <(printf "%s" "${{ inputs.test_type }}")
params=(
-T
${test_size[@]/#/--test-size=} ${test_type[@]/#/--test-type=}
--stat
--test-threads "${{ inputs.test_threads }}" --link-threads "${{ inputs.link_threads }}"
-DUSE_EAT_MY_DATA
-DDEBUGINFO_LINES_ONLY
)
TEST_RETRY_COUNT=${{ inputs.test_retry_count }}
IS_TEST_RESULT_IGNORED=0
case "$BUILD_PRESET" in
debug)
params+=(--build "debug")
;;
relwithdebinfo)
params+=(--build "relwithdebinfo")
;;
release)
params+=(--build "release")
;;
release-clang14) # TODO: remove after removing from workflow
params+=(--build "release")
params+=(--target-platform="CLANG14-LINUX-X86_64")
params+=(-DLLD_VERSION=16)
params+=(-DSTRIP)
;;
release-asan)
params+=(
--build "release" --sanitize="address"
)
if [ $TEST_RETRY_COUNT -z ]; then
TEST_RETRY_COUNT=1
fi
IS_TEST_RESULT_IGNORED=1
;;
release-tsan)
params+=(
--build "release" --sanitize="thread"
)
if [ $TEST_RETRY_COUNT -z ]; then
TEST_RETRY_COUNT=1
fi
IS_TEST_RESULT_IGNORED=1
;;
release-msan)
params+=(
--build "release" --sanitize="memory"
)
if [ $TEST_RETRY_COUNT -z ]; then
TEST_RETRY_COUNT=1
fi
IS_TEST_RESULT_IGNORED=1
;;
*)
echo "Invalid preset: $BUILD_PRESET"
exit 1
;;
esac
echo "IS_TEST_RESULT_IGNORED=$IS_TEST_RESULT_IGNORED" >> $GITHUB_ENV
if [ $TEST_RETRY_COUNT -z ]; then
# default is 3 for ordinary build and 1 for sanitizer builds
TEST_RETRY_COUNT=3
fi
if [ ! -z "${{ inputs.additional_ya_make_args }}" ]; then
params+=(${{ inputs.additional_ya_make_args }})
fi
if [ ! -z "${{ inputs.bazel_remote_uri }}" ]; then
params+=(--bazel-remote-store)
params+=(--bazel-remote-base-uri "${{ inputs.bazel_remote_uri }}")
fi
if [ "${{ inputs.put_build_results_to_cache }}" = "true" ]; then
params+=(--bazel-remote-username "${{ inputs.bazel_remote_username }}")
params+=(--bazel-remote-password-file "$BAZEL_REMOTE_PASSWORD_FILE")
params+=(--bazel-remote-put --dist-cache-max-file-size=209715200)
fi
if [ true = ${{ inputs.run_tests }} ]; then
params+=(-A)
params+=(--retest)
fi
params+=(
--stat -DCONSISTENT_DEBUG --no-dir-outputs
--test-failure-code 0 --build-all
--cache-size 2TB --force-build-depends
)
TESTMO_BRANCH_TAG="$GITHUB_REF_NAME"
TESTMO_ARCH="${{ runner.arch == 'X64' && 'x86-64' || runner.arch == 'ARM64' && 'arm64' || 'unknown' }}"
TESTMO_PR_NUMBER=${{ github.event.number }}
case "$BUILD_PRESET" in
relwithdebinfo)
TESTMO_SOURCE="ya-${TESTMO_ARCH}"
;;
debug)
TESTMO_SOURCE="ya-${TESTMO_ARCH}-debug"
;;
release-*)
TESTMO_SOURCE="ya-${TESTMO_ARCH}-${BUILD_PRESET/release-/}"
;;
*)
echo "Invalid preset: $BUILD_PRESET"
exit 1
;;
esac
echo "::debug::get version"
./ya --version
YA_MAKE_OUT_DIR=$TMP_DIR/out
YA_MAKE_OUTPUT="$PUBLIC_DIR/ya_make_output.log"
YA_MAKE_OUTPUT_URL="$PUBLIC_DIR_URL/ya_make_output.log"
echo "20 [Ya make output]($YA_MAKE_OUTPUT_URL)" >> $SUMMARY_LINKS
BUILD_FAILED=0
for RETRY in $(seq 1 $TEST_RETRY_COUNT)
do
case $GITHUB_EVENT_NAME in
workflow_dispatch)
TESTMO_RUN_NAME="${{ github.run_id }} manual"
TESTMO_EXTRA_TAG="manual"
;;
pull_request | pull_request_target)
TESTMO_RUN_NAME="${{ github.run_id }} PR #${TESTMO_PR_NUMBER}"
TESTMO_EXTRA_TAG="pr"
TESTMO_BRANCH_TAG=""
;;
schedule)
TESTMO_RUN_NAME="${{ github.run_id }} schedule"
TESTMO_EXTRA_TAG="schedule"
;;
push)
TESTMO_RUN_NAME="${{ github.run_id }} POST"
TESTMO_EXTRA_TAG="post-commit"
;;
*)
TESTMO_RUN_NAME="${{ github.run_id }}"
TESTMO_EXTRA_TAG=""
;;
esac
echo "TESTMO_RUN_NAME=$TESTMO_RUN_NAME" >> $GITHUB_ENV
if [ $RETRY != 1 ]; then
IS_RETRY=1
TESTMO_RUN_NAME="$TESTMO_RUN_NAME A$RETRY"
else
IS_RETRY=0
fi
CURRENT_PUBLIC_DIR_RELATIVE=try_$RETRY
# Can be used in tests in which you want to publish the results in s3 for each retry separately
export CURRENT_PUBLIC_DIR=$PUBLIC_DIR/$CURRENT_PUBLIC_DIR_RELATIVE
export CURRENT_PUBLIC_DIR_URL=$PUBLIC_DIR_URL/$CURRENT_PUBLIC_DIR_RELATIVE
mkdir $CURRENT_PUBLIC_DIR
if [ ${{ inputs.testman_token }} ]; then
# inititalize testmo session
TESTMO_RUN_URL="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
TESTMO_TOKEN=${{ inputs.testman_token }} testmo automation:resources:add-link --name build --url "$TESTMO_RUN_URL" --resources $CURRENT_PUBLIC_DIR/testmo.json
TESTMO_TOKEN=${{ inputs.testman_token }} testmo automation:resources:add-field --name git-sha --type string --value "${GITHUB_SHA:0:7}" --resources $CURRENT_PUBLIC_DIR/testmo.json
TESTMO_RUN_ID=$(
TESTMO_TOKEN=${{ inputs.testman_token }} retry.sh -- testmo automation:run:create --instance "https://$TESTMO_PROXY_ADDR" --project-id ${{ inputs.testman_project_id }} \
--name "$TESTMO_RUN_NAME" --source "$TESTMO_SOURCE" --resources $CURRENT_PUBLIC_DIR/testmo.json \
--tags "$TESTMO_BRANCH_TAG" --tags "$TESTMO_EXTRA_TAG"
)
echo "runid=${TESTMO_RUN_ID}" >> $GITHUB_OUTPUT
TESTMO_HISTORY_URL="${TESTMO_URL}/automation/runs/view/${TESTMO_RUN_ID}"
# Replace test history link
cat $SUMMARY_LINKS | (grep -v "Test history" || true) > $TMP_DIR/tmp_summary
mv $TMP_DIR/tmp_summary $SUMMARY_LINKS
echo "10 [Test history](${TESTMO_HISTORY_URL})" >> $SUMMARY_LINKS
fi
CURRENT_MESSAGE="ya make is running..."
if [ $IS_RETRY = 0 ]; then
CURRENT_MESSAGE="$CURRENT_MESSAGE"
RERUN_FAILED_OPT=""
else
CURRENT_MESSAGE="$CURRENT_MESSAGE (failed tests rerun, try $RETRY)"
RERUN_FAILED_OPT="-X"
fi
echo $CURRENT_MESSAGE | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py
CURRENT_JUNIT_XML_PATH=$CURRENT_PUBLIC_DIR/junit.xml
CURRENT_REPORT=$CURRENT_PUBLIC_DIR/report.json
set +e
(./ya make $YA_MAKE_TARGET "${params[@]}" \
$RERUN_FAILED_OPT --log-file "$PUBLIC_DIR/ya_log.log" \
--evlog-file "$CURRENT_PUBLIC_DIR/ya_evlog.jsonl" \
--junit "$CURRENT_JUNIT_XML_PATH" --build-results-report "$CURRENT_REPORT" --output "$YA_MAKE_OUT_DIR"; echo $? > exit_code) |& cat >> $YA_MAKE_OUTPUT
set -e
RC=`cat exit_code`
.github/scripts/tests/report_analyzer.py --report_file "$CURRENT_REPORT" --summary_file $CURRENT_PUBLIC_DIR/summary_report.txt || true
# convert to chromium trace
# seems analyze-make don't have simple "output" parameter, so change cwd
ya_dir=$(pwd)
(cd $CURRENT_PUBLIC_DIR && $ya_dir/ya analyze-make timeline --evlog ya_evlog.jsonl)
# generate test_bloat
./ydb/ci/build_bloat/test_bloat.py --junit $CURRENT_JUNIT_XML_PATH --output_dir $CURRENT_PUBLIC_DIR/test_bloat || true
echo "30 [Test bloat](${CURRENT_PUBLIC_DIR_URL}/test_bloat/tree_map.html)" >> $SUMMARY_LINKS
if [ $RC -ne 0 ]; then
echo "ya make returned $RC, build failed"
echo "status=failed" >> $GITHUB_OUTPUT
BUILD_FAILED=1
echo "Build failed, see the [logs]($YA_MAKE_OUTPUT_URL)." | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py --color red
break
fi
# fix junit files (add links, logs etc)
# archive unitest reports (orig)
gzip -c $CURRENT_JUNIT_XML_PATH > $CURRENT_PUBLIC_DIR/orig_junit.xml.gz
# postprocess junit report
.github/scripts/tests/transform_ya_junit.py -i \
-m .github/config/muted_ya.txt \
--ya_out "$YA_MAKE_OUT_DIR" \
--public_dir "$PUBLIC_DIR" \
--public_dir_url "$PUBLIC_DIR_URL" \
--log_out_dir "$CURRENT_PUBLIC_DIR_RELATIVE/artifacts/logs/" \
--test_stuff_out "$CURRENT_PUBLIC_DIR_RELATIVE/test_artifacts/" \
"$CURRENT_JUNIT_XML_PATH"
cp $CURRENT_JUNIT_XML_PATH $LAST_JUNIT_REPORT_XML
TESTS_RESULT=0
.github/scripts/tests/fail-checker.py "$CURRENT_JUNIT_XML_PATH" --output_path $CURRENT_PUBLIC_DIR/failed_count.txt || TESTS_RESULT=$?
FAILED_TESTS_COUNT=$(cat $CURRENT_PUBLIC_DIR/failed_count.txt)
IS_LAST_RETRY=0
if [ $TESTS_RESULT = 0 ] || [ $RETRY = $TEST_RETRY_COUNT ]; then
IS_LAST_RETRY=1
fi
if [ $FAILED_TESTS_COUNT -gt 500 ]; then
IS_LAST_RETRY=1
TOO_MANY_FAILED="Too many tests failed, NOT going to retry"
echo $TOO_MANY_FAILED | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py --color red
fi
if [ "${{ inputs.run_tests }}" = "true" ]; then
GITHUB_TOKEN=${{ github.token }} .github/scripts/tests/generate-summary.py \
--summary_links "$SUMMARY_LINKS" \
--public_dir "$PUBLIC_DIR" \
--public_dir_url "$PUBLIC_DIR_URL" \
--build_preset "$BUILD_PRESET" \
--status_report_file statusrep.txt \
--is_retry $IS_RETRY \
--is_last_retry $IS_LAST_RETRY \
--is_test_result_ignored $IS_TEST_RESULT_IGNORED \
--comment_color_file summary_color.txt \
--comment_text_file summary_text.txt \
"Tests" $CURRENT_PUBLIC_DIR/ya-test.html "$CURRENT_JUNIT_XML_PATH"
fi
s3cmd sync --follow-symlinks --acl-public --no-progress --stats --no-mime-magic --guess-mime-type --no-check-md5 "$PUBLIC_DIR/" "$S3_BUCKET_PATH/"
if [ "${{ inputs.run_tests }}" = "true" ]; then
cat summary_text.txt | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py --color `cat summary_color.txt`
fi
# upload tests results to YDB
ydb_upload_run_name="${TESTMO_RUN_NAME// /"_"}"
result=`.github/scripts/analytics/upload_tests_results.py --test-results-file ${CURRENT_JUNIT_XML_PATH} --run-timestamp $(date +%s) --commit $(git rev-parse HEAD) --build-type ${BUILD_PRESET} --pull $ydb_upload_run_name --job-name "${{ github.workflow }}" --job-id "${{ github.run_id }}" --branch ${GITHUB_REF_NAME}`
if [ ${{ inputs.testman_token }} ]; then
# finish testme session
# split large junit_report
export TESTMO_JUNIT_REPORT_PARTS=$TMP_DIR/try_$RETRY/junit-split
mkdir -p $TESTMO_JUNIT_REPORT_PARTS
.github/scripts/tests/split-junit.py -o "$TESTMO_JUNIT_REPORT_PARTS" "$CURRENT_JUNIT_XML_PATH"
# archive unitest reports (transformed)
tar -C $TESTMO_JUNIT_REPORT_PARTS/.. -czf $PUBLIC_DIR/junit_parts.xml.tar.gz $(basename $TESTMO_JUNIT_REPORT_PARTS)
TESTMO_TOKEN=${{ inputs.testman_token }} retry.sh -- testmo automation:run:submit-thread \
--instance "https://$TESTMO_PROXY_ADDR" --run-id "$TESTMO_RUN_ID" \
--results "$TESTMO_JUNIT_REPORT_PARTS/*.xml"
TESTMO_TOKEN=${{ inputs.testman_token }} retry.sh -- testmo automation:run:complete --instance "https://$TESTMO_PROXY_ADDR" --run-id $TESTMO_RUN_ID || true
echo "runid=" >> $GITHUB_OUTPUT
fi
if [ $IS_LAST_RETRY = 1 ]; then
break
fi
done;
if [ $BUILD_FAILED = 0 ]; then
echo "status=true" >> $GITHUB_OUTPUT
echo "Build successful." | GITHUB_TOKEN="${{ github.token }}" .github/scripts/tests/comment-pr.py --color green
fi
- name: comment-build-status
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target'
shell: bash
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
set -x
if [ "${{ steps.build.outputs.status }}" == "failed" ]; then
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"failure","description":"The check has been failed","context":"build_${{inputs.build_preset}}"}'
else
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"success","description":"The check has been completed successfully","context":"build_${{inputs.build_preset}}"}'
fi
- name: Clean up unfinished testmo sessions
if: always()
shell: bash
run: |
if [ ${{ steps.build.outputs.runid }} ]; then
TESTMO_TOKEN=${{ inputs.testman_token }} retry.sh -- testmo automation:run:complete --instance "https://$TESTMO_PROXY_ADDR" --run-id ${{ steps.build.outputs.runid }} || true
fi
if [ ${{ inputs.testman_token }} ]; then
kill $TESTMO_PROXY_PID
fi
- name: analyze tests results
shell: bash
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
set -x
if [ true = ${{ inputs.run_tests }} ]; then
teststatus=$(cat statusrep.txt)
if [[ $teststatus == "success" ]]; then
testmessage="The check has been completed successfully"
else
testmessage="The check has been failed"
fi
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"'$teststatus'","description":"'"$testmessage"'","context":"test_${{inputs.build_preset}}"}'
if [[ $teststatus != "success" ]]; then
echo "status=failed" >> $GITHUB_OUTPUT
fi
fi
- name: check test results
if: inputs.run_tests
shell: bash
run: |
if [ $IS_TEST_RESULT_IGNORED == 0 ]; then
.github/scripts/tests/fail-checker.py "$LAST_JUNIT_REPORT_XML"
fi
- name: show diff mute_ya.txt
if: inputs.build_preset == 'relwithdebinfo' && (github.event_name == 'pull_request' || github.event_name == 'pull_request_target')
shell: bash
continue-on-error: true
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
ORIGINAL_HEAD=$(git rev-parse HEAD)
get_file_diff_script=.github/scripts/tests/get_diff_lines_of_file.py
file_to_check=.github/config/muted_ya.txt
check_result=`$get_file_diff_script --base_sha $ORIGINAL_HEAD~1 --head_sha $ORIGINAL_HEAD --file_path $file_to_check`
if [[ ${check_result} == *"not changed" ]];then
echo file ${file_to_check} NOT changed
else
echo file ${file_to_check} changed
.github/scripts/tests/get_muted_tests.py --output_folder "$PUBLIC_DIR/mute_info/" get_mute_diff --base_sha $ORIGINAL_HEAD~1 --head_sha $ORIGINAL_HEAD --job-id "${{ github.run_id }}" --branch "${GITHUB_REF_NAME}"
FILE_PATH=$PUBLIC_DIR/mute_info/2_new_muted_tests.txt
SEPARATOR=""
if [ -f "$FILE_PATH" ]; then
LINE_COUNT=$(wc -l < "$FILE_PATH")
if [ "$LINE_COUNT" -gt 0 ]; then
SEPARATOR=', '
MESSAGE="Muted new $LINE_COUNT [tests](${PUBLIC_DIR_URL}/mute_info/2_new_muted_tests.txt)"
fi
fi
FILE_PATH=$PUBLIC_DIR/mute_info/3_unmuted_tests.txt
if [ -f "$FILE_PATH" ]; then
LINE_COUNT_unmute=$(wc -l < "$FILE_PATH")
if [ "$LINE_COUNT_unmute" -gt 0 ]; then
MESSAGE="${MESSAGE}${SEPARATOR}Unmuted $LINE_COUNT_unmute [tests](${PUBLIC_DIR_URL}/mute_info/3_unmuted_tests.txt)"
fi
fi
if [ -n "$MESSAGE" ]; then
printf "$MESSAGE" | .github/scripts/tests/comment-pr.py --color orange
fi
fi
- name: sync results to s3 and publish links
if: always()
shell: bash
run: |
set -x
echo "::group::s3-sync"
.github/scripts/Indexer/indexer.py -r "$PUBLIC_DIR/"
echo "00 [Artifacts](${PUBLIC_DIR_URL}/index.html)" >> $SUMMARY_LINKS
s3cmd sync --follow-symlinks --acl-public --no-progress --stats --no-mime-magic --guess-mime-type --no-check-md5 "$PUBLIC_DIR/" "$S3_BUCKET_PATH/"
cat $SUMMARY_LINKS | python3 -c 'import sys; print(" | ".join([v for _, v in sorted([l.strip().split(" ", 1) for l in sys.stdin], key=lambda a: (int(a[0]), a))]))' >> $GITHUB_STEP_SUMMARY
echo "::endgroup::"
- name: show free space
if: always()
shell: bash
run: df -h
- name: build_stats
shell: bash
continue-on-error: true
if: always()
run: |
set -x
export build_preset="${{ inputs.build_preset }}"
export commit_git_sha="$(git rev-parse HEAD)"
python3 .github/scripts/send_build_stats.py
- name: show_build_size_diff
shell: bash
continue-on-error: true
if: always()
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
set -x
export build_preset="${{ inputs.build_preset }}"
export branch_to_compare="$GITHUB_REF_NAME"
export yellow_treshold=102400
export red_treshold=2097152
export commit_git_sha="$(git rev-parse HEAD)"
get_sizes_comment_script=.github/scripts/get_build_diff.py
comment_raw=`$get_sizes_comment_script`
IFS=';;;'
read -ra comment_arr <<< "$comment_raw"
printf "$comment"
if [[ ${comment_raw} != "Error"* ]]; then
color=${comment_arr[0]}
replace=$color";;;"
comment=${comment_raw/$replace/""}
printf "$comment" | .github/scripts/tests/comment-pr.py --color $color
else
echo "Skipped build size difference, comment_raw = ${comment_raw}"
fi
- name: comment-if-cancel
shell: bash
if: cancelled() && (github.event_name == 'pull_request' || github.event_name == 'pull_request_target')
env:
BUILD_PRESET: ${{ inputs.build_preset }}
GITHUB_TOKEN: ${{ github.token }}
run: echo "Check cancelled" | .github/scripts/tests/comment-pr.py --color black
|