run gh and docker images

This commit is contained in:
Adil Hafeez 2025-12-23 17:42:24 -08:00
parent 4589f515cd
commit ade823003c
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
7 changed files with 14 additions and 14 deletions

View file

@ -1,4 +1,4 @@
name: e2e archgw tests
name: e2e plano tests
on:
push:
@ -7,7 +7,7 @@ on:
pull_request:
jobs:
e2e_archgw_tests:
e2e_plano_tests:
runs-on: ubuntu-latest-m
strategy:
fail-fast: false
@ -32,7 +32,7 @@ jobs:
run: |
cd ../../ && docker build -f arch/Dockerfile . -t katanemo/plano -t katanemo/plano:0.4.0 -t katanemo/plano:latest
- name: start archgw
- name: start plano
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}
@ -42,9 +42,9 @@ jobs:
AWS_BEARER_TOKEN_BEDROCK: ${{ secrets.AWS_BEARER_TOKEN_BEDROCK }}
run: |
docker compose up | tee &> archgw.logs &
docker compose up | tee &> plano.logs &
- name: wait for archgw to be healthy
- name: wait for plano to be healthy
run: |
source common.sh && wait_for_healthz http://localhost:10000/healthz
@ -58,11 +58,11 @@ jobs:
run: |
poetry install
- name: run archgw tests
- name: run plano tests
run: |
poetry run pytest || tail -100 archgw.logs
poetry run pytest || tail -100 plano.logs
- name: stop archgw docker container
- name: stop plano docker container
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}