From d8a8917c5512c343eccf817fc7145ef2073d2f4a Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 13 Jun 2026 20:46:51 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20=ED=8C=8C=EC=9D=B4=ED=94=84=EB=9D=BC?= =?UTF-8?q?=EC=9D=B8=EC=97=90=EC=84=9C=20=EC=9D=B8=EB=9D=BC=EC=9D=B8=20stu?= =?UTF-8?q?b=20=EC=83=9D=EC=84=B1=EC=9D=84=20=EC=A0=9C=EA=B1=B0=ED=95=98?= =?UTF-8?q?=EA=B3=A0=20=ED=99=98=EA=B2=BD=20=EB=A0=88=EB=B2=A8=20=EA=B0=80?= =?UTF-8?q?=EC=9D=B4=EB=93=9C=EB=A1=9C=20=EC=9A=B0=ED=9A=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4822841..2a59105 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -34,26 +34,6 @@ jobs: fi export PATH=$HOME/.local/bin:$PATH python3 -c "import platform, sys; print('[ENV_DEBUG] Platform:', platform.platform(), 'Python:', sys.version)" - - # distutils 누락 stub 파일 생성 및 Mock 클래스 주입 - DISTUTILS_PATH=$(python3 -c "import distutils, os; print(os.path.dirname(distutils.__file__))") - echo "[ENV_DEBUG] distutils directory: $DISTUTILS_PATH" - - cat << 'EOF' > "$DISTUTILS_PATH/cygwinccompiler.py" -import distutils.ccompiler -class CygwinCCompiler(distutils.ccompiler.CCompiler): - pass -EOF - - cat << 'EOF' > "$DISTUTILS_PATH/msvccompiler.py" -import distutils.ccompiler -class MSVCCompiler(distutils.ccompiler.CCompiler): - pass -EOF - - # 임포트 성공 확인 - python3 -c "import distutils, distutils.cygwinccompiler, distutils.msvccompiler; print('[ENV_DEBUG] distutils stub path:', distutils.__file__)" - python3 -m pip install --upgrade pip --user --quiet python3 -m pip install --upgrade --force-reinstall "setuptools==59.6.0" "wheel" "Cython" --user --quiet python3 -c "import setuptools; print('[ENV_DEBUG] installed setuptools:', setuptools.__version__)"