From 53bb25862c93ad09f7ae556c98c60f3d5760e7d5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 16:56:41 +0000 Subject: [PATCH] fix: use Gitea-native CI workflow with direct bash commands instead of GitHub Actions --- .gitea/workflows/ci.yml | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ffe63f8..c3c81c8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,20 +11,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: https://github.com/actions/checkout@v4 + run: | + git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/agentic-codebase-memory-manager.git . - name: Set up Python - uses: https://github.com/actions/setup-python@v5 - with: - python-version: '3.11' - - - name: Cache pip packages - uses: https://github.com/actions/cache@v4 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }} - restore-keys: | - ${{ runner.os }}-pip- + run: | + apt-get update && apt-get install -y python3.11 python3-pip - name: Install dependencies run: | @@ -47,12 +39,12 @@ jobs: needs: test steps: - name: Checkout code - uses: https://github.com/actions/checkout@v4 + run: | + git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/agentic-codebase-memory-manager.git . - name: Set up Python - uses: https://github.com/actions/setup-python@v5 - with: - python-version: '3.11' + run: | + apt-get update && apt-get install -y python3.11 python3-pip - name: Install dependencies run: | @@ -60,7 +52,7 @@ jobs: - name: Verify import run: | - python -c "import memory_manager; print(memory_manager.__version__)" + python3 -c "import memory_manager; print(memory_manager.__version__)" - name: Verify CLI run: |