diff options
author | nkozlovskiy <nmk@ydb.tech> | 2023-11-17 14:40:02 +0300 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-11-17 15:44:27 +0300 |
commit | 79ab155ed8bb9922725327b34656bc63b3fb4211 (patch) | |
tree | 4b3e71450a81f418472d1e3784c3e5419d26ae45 | |
parent | e4e6720807a7ba193c586ffd3bc472cce5a3017d (diff) | |
download | ydb-79ab155ed8bb9922725327b34656bc63b3fb4211.tar.gz |
ydb-oss: keep building even if fail. enable GO build support
-rw-r--r-- | .github/actions/build_ya/action.yml | 2 | ||||
-rw-r--r-- | .github/actions/test_ya/action.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/build_ya/action.yml b/.github/actions/build_ya/action.yml index 86138fc583..7ebcd115ab 100644 --- a/.github/actions/build_ya/action.yml +++ b/.github/actions/build_ya/action.yml @@ -74,7 +74,7 @@ runs: ;; esac - ./ya make --build "${build_type}" --force-build-depends -D'BUILD_LANGUAGES=CPP PY3 PY2' -T --stat \ + ./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" \ --dump-graph --dump-graph-to-file "$TMP_DIR/ya_graph.json" \ --cache-size 512G --link-threads "${{ inputs.link_threads }}" \ diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index fe7c81879a..ecb96cd5dd 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -187,7 +187,7 @@ runs: readarray -d ',' -t test_size < <(printf "%s" "${{ inputs.test_size }}") readarray -d ',' -t test_type < <(printf "%s" "${{ inputs.test_type }}") - ./ya test -k --build "${build_type}" -D'BUILD_LANGUAGES=CPP PY3 PY2' \ + ./ya test -k --build "${build_type}" -D'BUILD_LANGUAGES=CPP PY3 PY2 GO' \ ${test_size[@]/#/--test-size=} ${test_type[@]/#/--test-type=} \ --test-threads "${{ inputs.test_threads }}" --link-threads "${{ inputs.link_threads }}" \ --cache-size 512G --do-not-output-stderrs -T \ |