-
Notifications
You must be signed in to change notification settings - Fork 252
67 lines (65 loc) · 1.94 KB
/
qa-suite.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: QA Suite
on:
# Manual trigger only
workflow_dispatch:
jobs:
qa-suite:
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.4'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
- name: Setup Swirl
run: python swirl.py setup
- name: Install the Latest Galaxy UI
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-master sh -c "behave --tags=qa_suite,community"
- name: Upload Log Files
if: always()
uses: actions/upload-artifact@v4
with:
name: log-files
path: |
logs/
/var/log/syslog*