1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-17 23:59:44 +00:00

Only diff new dirs and files (#764)

* Ci use python 3.12

Only diff new dirs and files

* Modify comment

---------

Co-authored-by: Heran Yang <heran.yang@seafile.com>
This commit is contained in:
feiniks
2025-06-24 11:50:29 +08:00
committed by GitHub
parent ee13c7c5d0
commit b139442436
4 changed files with 56 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ from os.path import abspath, basename, exists, expanduser, join
import requests
import termcolor
import site
from serverctl import ServerCtl
from utils import (
@@ -53,8 +54,10 @@ def make_build_env():
_env_add('LDFLAGS', '-L%s' % join(PREFIX, 'lib64'), seperator=' ')
_env_add('PATH', join(PREFIX, 'bin'))
py_version = '.'.join(map(str, sys.version_info[:3]))
if on_github_actions():
_env_add('PYTHONPATH', join(os.environ.get('RUNNER_TOOL_CACHE'), 'Python/3.12.10/x64/lib/python3.12/site-packages'))
_env_add('PYTHONPATH', join(os.environ.get('RUNNER_TOOL_CACHE'), 'Python/{py_version}/x64/lib/python3.12/site-packages'))
_env_add('PYTHONPATH', join(PREFIX, 'lib/python3.12/site-packages'))
_env_add('PKG_CONFIG_PATH', join(PREFIX, 'lib', 'pkgconfig'))
_env_add('PKG_CONFIG_PATH', join(PREFIX, 'lib64', 'pkgconfig'))