File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -310,11 +310,16 @@ runs:
310
310
set +ex
311
311
(./ya make ${{ inputs.build_target }} "${params[@]}" \
312
312
$RERUN_FAILED_OPT --log-file "$PUBLIC_DIR/ya_log.log" \
313
- --evlog-file "$PUBLIC_DIR /ya_evlog.jsonl" \
313
+ --evlog-file "$CURRENT_PUBLIC_DIR /ya_evlog.jsonl" \
314
314
--junit "$CURRENT_JUNIT_XML_PATH" --output "$YA_MAKE_OUT_DIR"; echo $? > exit_code) |& tee -a $YA_MAKE_OUTPUT
315
315
set -ex
316
316
RC=`cat exit_code`
317
317
318
+ # convert to chromium trace
319
+ # seems analyze-make don't have simple "output" parameter, so change cwd
320
+ ya_dir=$(pwd)
321
+ (cd $CURRENT_PUBLIC_DIR && $ya_dir/ya analyze-make timeline --evlog ya_evlog.jsonl)
322
+
318
323
if [ $RC -ne 0 ]; then
319
324
echo "ya make returned $RC, build failed"
320
325
echo "status=failed" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments