mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
<!-- Clearly explain the need for these changes: --> ### Changes 🏗️ <!-- Concisely describe all of the changes made in this pull request: --> ### Checklist 📋 #### For code changes: - [ ] I have clearly listed my changes in the PR description - [ ] I have made a test plan - [ ] I have tested my changes according to the test plan: <!-- Put your test plan here: --> - [ ] ... <details> <summary>Example test plan</summary> - [ ] Create from scratch and execute an agent with at least 3 blocks - [ ] Import an agent from file upload, and confirm it executes correctly - [ ] Upload agent to marketplace - [ ] Import an agent from marketplace and confirm it executes correctly - [ ] Edit an agent from monitor, and confirm it executes correctly </details> #### For configuration changes: - [ ] `.env.example` is updated or already compatible with my changes - [ ] `docker-compose.yml` is updated or already compatible with my changes - [ ] I have included a list of my configuration changes in the PR description (under **Changes**) <details> <summary>Examples of configuration changes</summary> - Changing ports - Adding new services that need to communicate with each other - Secrets or environment variable changes - New or infrastructure changes such as databases </details>
163 lines
5.0 KiB
YAML
163 lines
5.0 KiB
YAML
name: AutoGPT Platform - Backend CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master, dev, ci-test*]
|
|
paths:
|
|
- ".github/workflows/platform-backend-ci.yml"
|
|
- "autogpt_platform/backend/**"
|
|
- "autogpt_platform/autogpt_libs/**"
|
|
pull_request:
|
|
branches: [master, dev, release-*]
|
|
paths:
|
|
- ".github/workflows/platform-backend-ci.yml"
|
|
- "autogpt_platform/backend/**"
|
|
- "autogpt_platform/autogpt_libs/**"
|
|
merge_group:
|
|
|
|
concurrency:
|
|
group: ${{ format('backend-ci-{0}', github.head_ref && format('{0}-{1}', github.event_name, github.event.pull_request.number) || github.sha) }}
|
|
cancel-in-progress: ${{ startsWith(github.event_name, 'pull_request') }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: autogpt_platform/backend
|
|
|
|
jobs:
|
|
test:
|
|
permissions:
|
|
contents: read
|
|
timeout-minutes: 30
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.10"]
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
redis:
|
|
image: bitnami/redis:6.2
|
|
env:
|
|
REDIS_PASSWORD: testpassword
|
|
ports:
|
|
- 6379:6379
|
|
rabbitmq:
|
|
image: rabbitmq:3.12-management
|
|
ports:
|
|
- 5672:5672
|
|
- 15672:15672
|
|
env:
|
|
RABBITMQ_DEFAULT_USER: ${{ env.RABBITMQ_DEFAULT_USER }}
|
|
RABBITMQ_DEFAULT_PASS: ${{ env.RABBITMQ_DEFAULT_PASS }}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: true
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Setup Supabase
|
|
uses: supabase/setup-cli@v1
|
|
with:
|
|
version: 1.178.1
|
|
|
|
- id: get_date
|
|
name: Get date
|
|
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
|
|
|
- name: Set up Python dependency cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.cache/pypoetry
|
|
key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }}
|
|
|
|
- name: Install Poetry (Unix)
|
|
run: |
|
|
curl -sSL https://install.python-poetry.org | python3 -
|
|
|
|
if [ "${{ runner.os }}" = "macOS" ]; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
fi
|
|
|
|
- name: Check poetry.lock
|
|
run: |
|
|
poetry lock
|
|
|
|
if ! git diff --quiet poetry.lock; then
|
|
echo "Error: poetry.lock not up to date."
|
|
echo
|
|
git diff poetry.lock
|
|
exit 1
|
|
fi
|
|
|
|
- name: Install Python dependencies
|
|
run: poetry install
|
|
|
|
- name: Generate Prisma Client
|
|
run: poetry run prisma generate
|
|
|
|
- id: supabase
|
|
name: Start Supabase
|
|
working-directory: .
|
|
run: |
|
|
supabase init
|
|
supabase start --exclude postgres-meta,realtime,storage-api,imgproxy,inbucket,studio,edge-runtime,logflare,vector,supavisor
|
|
supabase status -o env | sed 's/="/=/; s/"$//' >> $GITHUB_OUTPUT
|
|
# outputs:
|
|
# DB_URL, API_URL, GRAPHQL_URL, ANON_KEY, SERVICE_ROLE_KEY, JWT_SECRET
|
|
|
|
- name: Run Database Migrations
|
|
run: poetry run prisma migrate dev --name updates
|
|
env:
|
|
DATABASE_URL: ${{ steps.supabase.outputs.DB_URL }}
|
|
|
|
- id: lint
|
|
name: Run Linter
|
|
run: poetry run lint
|
|
|
|
- name: Run pytest with coverage
|
|
run: |
|
|
if [[ "${{ runner.debug }}" == "1" ]]; then
|
|
poetry run pytest -s -vv -o log_cli=true -o log_cli_level=DEBUG test
|
|
else
|
|
poetry run pytest -s -vv test
|
|
fi
|
|
if: success() || (failure() && steps.lint.outcome == 'failure')
|
|
env:
|
|
LOG_LEVEL: ${{ runner.debug && 'DEBUG' || 'INFO' }}
|
|
DATABASE_URL: ${{ steps.supabase.outputs.DB_URL }}
|
|
SUPABASE_URL: ${{ steps.supabase.outputs.API_URL }}
|
|
SUPABASE_SERVICE_ROLE_KEY: ${{ steps.supabase.outputs.SERVICE_ROLE_KEY }}
|
|
SUPABASE_JWT_SECRET: ${{ steps.supabase.outputs.JWT_SECRET }}
|
|
REDIS_HOST: 'localhost'
|
|
REDIS_PORT: '6379'
|
|
REDIS_PASSWORD: 'testpassword'
|
|
|
|
env:
|
|
CI: true
|
|
PLAIN_OUTPUT: True
|
|
RUN_ENV: local
|
|
PORT: 8080
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
# We know these are here, don't report this as a security vulnerability
|
|
# This is used as the default credential for the entire system's RabbitMQ instance
|
|
# If you want to replace this, you can do so by making our entire system generate
|
|
# new credentials for each local user and update the environment variables in
|
|
# the backend service, docker composes, and examples
|
|
RABBITMQ_DEFAULT_USER: 'rabbitmq_user_default'
|
|
RABBITMQ_DEFAULT_PASS: 'k0VMxyIJF9S35f3x2uaw5IWAl6Y536O7'
|
|
|
|
# - name: Upload coverage reports to Codecov
|
|
# uses: codecov/codecov-action@v4
|
|
# with:
|
|
# token: ${{ secrets.CODECOV_TOKEN }}
|
|
# flags: backend,${{ runner.os }}
|