Testing WIP #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow for running WIP Behave tests on the GitHub runners | |
# Manual trigger only against the branch you've chosen | |
# Enter the Behave tag name(s) you're testing with at the prompt | |
# Do NOT include the '@', only the tag name(s) (e.g. "estest" not "@estest") | |
name: Testing WIP | |
on: | |
workflow_dispatch: | |
inputs: | |
behave_tags: # Input the Behave tag(s) to run | |
description: 'Behave tag(s) to run' | |
required: true | |
default: 'estest' # Default tag if none specified | |
jobs: | |
wip-tests: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
steps: | |
- name: Checkout the Code | |
uses: actions/checkout@v4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Set Up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12.2' | |
cache: 'pip' | |
- name: Install Swirl | |
run: ./install.sh | |
- name: Setup Swirl | |
run: python swirl.py setup | |
- name: Install the Galaxy UI Preview | |
run: ./install-ui.sh -p | |
env: | |
MSAL_CB_PORT: 8000 | |
MSAL_HOST: localhost | |
- name: Start Swirl | |
run: | | |
echo "OPENAI_API_KEY='${{ secrets.QA_OPENAI_KEY }}'" >> .env | |
cat .env | |
python swirl.py start | |
env: | |
ALLOWED_HOSTS: localhost,host.docker.internal | |
- name: Run the QA Suite | |
run: | | |
echo "SWIRL_TEST_HOST=localhost" > .env.qa | |
echo "MSAL_HOST=localhost" >> .env.qa | |
echo "MSAL_CB_PORT=8000" >> .env.qa | |
echo "QA_ADMIN_PW=${{ secrets.QA_ADMIN_PW }}" >> .env.qa | |
echo "QA_OPENAI_KEY=${{ secrets.QA_OPENAI_KEY }}" >> .env.qa | |
echo "========" | |
cat .env.qa | |
echo "========" | |
docker run --net=host --env-file .env.qa -t swirlai/swirl-search-qa:automated-tests-develop sh -c "behave --tags=${{ github.event.inputs.behave_tags }}" | |
- name: Upload Log Files | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: log-files | |
path: | | |
logs/ | |
/var/log/syslog* |