diff options
author | AlexSm <alex@ydb.tech> | 2023-12-14 23:50:34 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-12-15 00:16:49 +0300 |
commit | 03dfc91f6bc1ebd03260d47c8199d3a08cb78023 (patch) | |
tree | 2aea1f03e1b180388f6694355e95d58b661139a1 | |
parent | d4cb7cff4fdfe9cf3480de147344bb0cbd74e7f5 (diff) | |
download | ydb-03dfc91f6bc1ebd03260d47c8199d3a08cb78023.tar.gz |
Continue with test on build fail
Continue with test on build fail
Pull Request resolved: https://github.com/ydb-platform/ydb/pull/521
-rw-r--r-- | .github/actions/build_ya/action.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/build_ya/action.yml b/.github/actions/build_ya/action.yml index dc40b1b186..41c42a4498 100644 --- a/.github/actions/build_ya/action.yml +++ b/.github/actions/build_ya/action.yml @@ -88,7 +88,10 @@ runs: ./ya make -k --build "${build_type}" --force-build-depends -D'BUILD_LANGUAGES=CPP PY3 PY2 GO' -T --stat \ --log-file "$TMP_DIR/ya_log.txt" --evlog-file "$TMP_DIR/ya_evlog.jsonl" \ --cache-size 512G --link-threads "${{ inputs.link_threads }}" \ - "${extra_params[@]}" + "${extra_params[@]}" || ( + RC=$? + echo "::debug::ya make RC=$RC" + ) - name: sync logs to s3 if: always() |