diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-10-02 21:04:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-02 21:04:48 +0300 |
commit | 2d80271a267e91aedfb3a4c543669f957748ed9e (patch) | |
tree | d6f42c8e687e52319c429120654ac558d51c8247 | |
parent | ac7e20cc3c1d2a1910b95a0822183be6ca2e1f87 (diff) | |
download | ydb-2d80271a267e91aedfb3a4c543669f957748ed9e.tar.gz |
Fix mime type in build artifacts (#10011)
-rw-r--r-- | .github/actions/test_ya/action.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index 4fec1502a5..f05ba29cec 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -135,7 +135,7 @@ runs: --cert-key "$TMP_DIR/key.pem" \ --target-timeout 3,60 \ --max-request-time 200 \ - "$TESTMO_URL" > $PUBLIC_DIR/testmo_proxy.log 2>&1 & + "$TESTMO_URL" > $PUBLIC_DIR/testmo_proxy_log.txt 2>&1 & TESTMO_PROXY_PID=$! echo "TESTMO_PROXY_ADDR=$TESTMO_PROXY_ADDR" >> $GITHUB_ENV @@ -162,8 +162,8 @@ runs: 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" + GRAPH_COMPARE_OUTPUT="$PUBLIC_DIR/graph_compare_log.txt" + GRAPH_COMPARE_OUTPUT_URL="$PUBLIC_DIR_URL/graph_compare_log.txt" set +e ./.github/scripts/graph_compare.sh $ORIGINAL_HEAD~1 $ORIGINAL_HEAD |& tee $GRAPH_COMPARE_OUTPUT @@ -307,8 +307,8 @@ runs: 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" + YA_MAKE_OUTPUT="$PUBLIC_DIR/ya_make_output.txt" + YA_MAKE_OUTPUT_URL="$PUBLIC_DIR_URL/ya_make_output.txt" echo "20 [Ya make output]($YA_MAKE_OUTPUT_URL)" >> $SUMMARY_LINKS BUILD_FAILED=0 @@ -387,7 +387,7 @@ runs: 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" \ + $RERUN_FAILED_OPT --log-file "$PUBLIC_DIR/ya_log.txt" \ --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 |