mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-07 00:14:23 +01:00
chore: setup workspace for exchange (#105)
This commit is contained in:
79
.github/workflows/ci.yaml
vendored
79
.github/workflows/ci.yaml
vendored
@@ -5,7 +5,7 @@ on:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
exchange:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
@@ -19,9 +19,82 @@ jobs:
|
||||
|
||||
- name: Ruff
|
||||
run: |
|
||||
uvx ruff check
|
||||
uvx ruff format --check
|
||||
uvx ruff check packages/exchange
|
||||
uvx ruff format packages/exchange --check
|
||||
|
||||
- name: Run tests
|
||||
working-directory: ./packages/exchange
|
||||
run: |
|
||||
uv run pytest tests -m 'not integration'
|
||||
|
||||
goose:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install UV
|
||||
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||
|
||||
- name: Source Cargo Environment
|
||||
run: source $HOME/.cargo/env
|
||||
|
||||
- name: Ruff
|
||||
run: |
|
||||
uvx ruff check src tests
|
||||
uvx ruff format src tests --check
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
uv run pytest tests -m 'not integration'
|
||||
|
||||
|
||||
# This runs integration tests of the OpenAI API, using Ollama to host models.
|
||||
# This lets us test PRs from forks which can't access secrets like API keys.
|
||||
ollama:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
python-version:
|
||||
# Only test the lastest python version.
|
||||
- "3.12"
|
||||
ollama-model:
|
||||
# For quicker CI, use a smaller, tool-capable model than the default.
|
||||
- "qwen2.5:0.5b"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install UV
|
||||
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||
|
||||
- name: Source Cargo Environment
|
||||
run: source $HOME/.cargo/env
|
||||
|
||||
- name: Set up Python
|
||||
run: uv python install ${{ matrix.python-version }}
|
||||
|
||||
- name: Install Ollama
|
||||
run: curl -fsSL https://ollama.com/install.sh | sh
|
||||
|
||||
- name: Start Ollama
|
||||
run: |
|
||||
# Run the background, in a way that survives to the next step
|
||||
nohup ollama serve > ollama.log 2>&1 &
|
||||
|
||||
# Block using the ready endpoint
|
||||
time curl --retry 5 --retry-connrefused --retry-delay 1 -sf http://localhost:11434
|
||||
|
||||
# Tests use OpenAI which does not have a mechanism to pull models. Run a
|
||||
# simple prompt to (pull and) test the model first.
|
||||
- name: Test Ollama model
|
||||
run: ollama run $OLLAMA_MODEL hello || cat ollama.log
|
||||
env:
|
||||
OLLAMA_MODEL: ${{ matrix.ollama-model }}
|
||||
|
||||
- name: Run Ollama tests
|
||||
run: uv run pytest tests -m integration -k ollama
|
||||
working-directory: ./packages/exchange
|
||||
env:
|
||||
OLLAMA_MODEL: ${{ matrix.ollama-model }}
|
||||
|
||||
50
.github/workflows/publish.yaml
vendored
Normal file
50
.github/workflows/publish.yaml
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
name: Publish
|
||||
|
||||
# A release on goose will also publish exchange, if it has updated
|
||||
# This means in some cases we may need to make a bump in goose without other changes to release exchange
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Get current version from pyproject.toml
|
||||
id: get_version
|
||||
run: |
|
||||
echo "VERSION=$(grep -m 1 'version =' "pyproject.toml" | awk -F'"' '{print $2}')" >> $GITHUB_ENV
|
||||
|
||||
- name: Extract tag version
|
||||
id: extract_tag
|
||||
run: |
|
||||
TAG_VERSION=$(echo "${{ github.event.release.tag_name }}" | sed -E 's/v(.*)/\1/')
|
||||
echo "TAG_VERSION=$TAG_VERSION" >> $GITHUB_ENV
|
||||
|
||||
- name: Check if tag matches version from pyproject.toml
|
||||
id: check_tag
|
||||
run: |
|
||||
if [ "${{ env.TAG_VERSION }}" != "${{ env.VERSION }}" ]; then
|
||||
echo "::error::Tag version (${{ env.TAG_VERSION }}) does not match version in pyproject.toml (${{ env.VERSION }})."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Install the latest version of uv
|
||||
uses: astral-sh/setup-uv@v1
|
||||
with:
|
||||
version: "latest"
|
||||
|
||||
- name: Build Package
|
||||
run: |
|
||||
uv build -o dist --package goose-ai
|
||||
uv build -o dist --package ai-exchange
|
||||
|
||||
- name: Publish package to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
with:
|
||||
skip-existing: true
|
||||
47
.github/workflows/pypi_release.yaml
vendored
47
.github/workflows/pypi_release.yaml
vendored
@@ -1,47 +0,0 @@
|
||||
name: PYPI Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
pypi_release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install UV
|
||||
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||
|
||||
- name: Source Cargo Environment
|
||||
run: source $HOME/.cargo/env
|
||||
|
||||
- name: Build with UV
|
||||
run: uvx --from build pyproject-build --installer uv
|
||||
|
||||
- name: Check version
|
||||
id: check_version
|
||||
run: |
|
||||
PACKAGE_NAME=$(grep '^name =' pyproject.toml | sed -E 's/name = "(.*)"/\1/')
|
||||
TAG_VERSION=$(echo "$GITHUB_REF" | sed -E 's/refs\/tags\/v(.+)/\1/')
|
||||
CURRENT_VERSION=$(curl -s https://pypi.org/pypi/$PACKAGE_NAME/json | jq -r .info.version)
|
||||
PROJECT_VERSION=$(grep '^version =' pyproject.toml | sed -E 's/version = "(.*)"/\1/')
|
||||
if [ "$TAG_VERSION" != "$PROJECT_VERSION" ]; then
|
||||
echo "Tag version does not match version in pyproject.toml"
|
||||
exit 1
|
||||
fi
|
||||
if python -c "from packaging.version import parse as parse_version; exit(0 if parse_version('$TAG_VERSION') > parse_version('$CURRENT_VERSION') else 1)"; then
|
||||
echo "new_version=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Publish
|
||||
uses: pypa/gh-action-pypi-publish@v1.4.2
|
||||
if: steps.check_version.outputs.new_version == 'true'
|
||||
with:
|
||||
user: __token__
|
||||
password: ${{ secrets.PYPI_TOKEN_TEMP }}
|
||||
packages_dir: ./dist/
|
||||
Reference in New Issue
Block a user