From 6f5bd4d2e9470554fa6b00dde1923bb6b8a80672 Mon Sep 17 00:00:00 2001 From: Liu An Date: Thu, 5 Mar 2026 14:26:40 +0800 Subject: [PATCH] feat: add bin and internal dirs to .gitignore for Go server build output (#13391) ### What problem does this PR solve? add bin and internal dirs to .gitignore for Go server build output --- .github/workflows/tests.yml | 4 ++-- .gitignore | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 72dab7c6c..8d660e3c3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -276,7 +276,7 @@ jobs: local tmp_log tmp_log="$(mktemp)" set +e - timeout 300s "$@" 2>&1 | tee "${tmp_log}" + timeout 500s "$@" 2>&1 | tee "${tmp_log}" local status=${PIPESTATUS[0]} set -e cat "${tmp_log}" >> "${logfile}" @@ -462,7 +462,7 @@ jobs: local tmp_log tmp_log="$(mktemp)" set +e - timeout 300s "$@" 2>&1 | tee "${tmp_log}" + timeout 500s "$@" 2>&1 | tee "${tmp_log}" local status=${PIPESTATUS[0]} set -e cat "${tmp_log}" >> "${logfile}" diff --git a/.gitignore b/.gitignore index 0baacf87d..dc3eba504 100644 --- a/.gitignore +++ b/.gitignore @@ -219,3 +219,7 @@ ragflow.egg-info/ uv-aarch64*.tar.gz uv-aarch64-unknown-linux-gnu.tar.gz docker/launch_backend_service_windows.sh + +# Go server build output +bin/ +internal/