diff options
author | nkozlovskiy <nmk@ydb.tech> | 2023-12-13 01:14:30 +0300 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-12-13 01:52:12 +0300 |
commit | 35d7049b38602e8cbfcd3f96257329a1abce947e (patch) | |
tree | 6d1365ae1d5c4a8c5476d9e7fc641c772c036f0d | |
parent | 21c42e9f3e32ac1bf46747a51c73b13e9eea4c1a (diff) | |
download | ydb-35d7049b38602e8cbfcd3f96257329a1abce947e.tar.gz |
ci: don't fail to fast on test run, add POST suffix for push checks
-rw-r--r-- | .github/actions/test_ya/action.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index 9729d6183d..8b77983bb1 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -151,7 +151,10 @@ runs: ./ya test "${params[@]}" \ --bazel-remote-put --bazel-remote-username "${{ inputs.bazel_remote_username }}" --bazel-remote-password "${{ inputs.bazel_remote_password }}" \ --log-file "$LOG_DIR/ya_log_prewarm.txt" --evlog-file "$LOG_DIR/ya_evlog_prewarm.jsonl" \ - --dist-cache-evict-bins --cache-tests --no-dir-outputs --test-node-output-limit 100000 --drop-graph-result-before-tests + --dist-cache-evict-bins --cache-tests --no-dir-outputs --test-node-output-limit 100000 --drop-graph-result-before-tests || ( + RC=$? + echo "::debug::ya test RC=$RC" + ) fi echo "::debug::save tests reports" @@ -238,6 +241,10 @@ runs: TESTMO_RUN_NAME="${{ github.run_id }} schedule" EXTRA_TAG="schedule" ;; + push) + TESTMO_RUN_NAME="${{ github.run_id }} POST" + EXTRA_TAG="post-commit" + ;; *) TESTMO_RUN_NAME="${{ github.run_id }}" EXTRA_TAG="" |