Browse Source

ydb-oss: keep building even if fail. enable GO build support

nkozlovskiy 1 year ago
parent
commit
79ab155ed8
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .github/actions/build_ya/action.yml
  2. 1 1
      .github/actions/test_ya/action.yml

+ 1 - 1
.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 }}" \

+ 1 - 1
.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 \