Skip to content

Commit

Permalink
Merge pull request #1342 from swirlai/ds1741-public
Browse files Browse the repository at this point in the history
update testing workflows for RAG etc.
  • Loading branch information
erikspears authored Apr 27, 2024
2 parents d5f5178 + ef4bfdd commit b0cc0e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/qa-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ jobs:
- name: Checkout the Code
uses: actions/checkout@v4
- name: Start Application Environment
run: docker-compose up -d
run: |
export MSAL_CB_PORT=8000
export MSAL_HOST=localhost
export OPENAI_API_KEY='${{ secrets.QA_OPENAI_KEY }}'
docker-compose up -d
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand All @@ -37,7 +41,6 @@ jobs:
- name: Create env File
run: |
echo "SWIRL_TEST_HOST=localhost" > .env
echo "QA_ADMIN_USER=${{ secrets.QA_ADMIN_USER }}" >> .env
echo "QA_ADMIN_PW=${{ secrets.QA_ADMIN_PW }}" >> .env
echo "QA_OPENAI_KEY=${{ secrets.QA_OPENAI_KEY }}" >> .env
- name: Run the QA Suite
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
- name: Create env File
run: |
echo "SWIRL_TEST_HOST=localhost" > .env
echo "QA_ADMIN_USER=${{ secrets.QA_ADMIN_USER }}" >> .env
echo "QA_ADMIN_PW=${{ secrets.QA_ADMIN_PW }}" >> .env
echo "QA_OPENAI_KEY=${{ secrets.QA_OPENAI_KEY }}" >> .env
- name: Run the QA Suite
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/testing-wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
- name: Create env File
run: |
echo "SWIRL_TEST_HOST=localhost" > .env
echo "QA_ADMIN_USER=${{ secrets.QA_ADMIN_USER }}" >> .env
echo "QA_ADMIN_PW=${{ secrets.QA_ADMIN_PW }}" >> .env
echo "QA_OPENAI_KEY=${{ secrets.QA_OPENAI_KEY }}" >> .env
- name: Run the QA Suite
Expand Down

0 comments on commit b0cc0e1

Please sign in to comment.