-
Notifications
You must be signed in to change notification settings - Fork 46
82 lines (71 loc) · 2.32 KB
/
scheduled.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Scheduled e2e tests
on:
schedule:
# Run at 10:00 AM/PM UTC
- cron: "0 10,22 * * *"
# Run on demand
workflow_dispatch:
env:
EDA_QA_PATH: "./eda-qa"
REGISTRY: quay.io
QUAY_USER: ansible+eda_gha
jobs:
api-e2e-tests:
if: github.repository == 'ansible/eda-server'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ env.QUAY_USER }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Run api in background
working-directory: tools/docker
run: |
docker compose -p eda -f docker-compose-stage.yaml pull
docker compose -p eda -f docker-compose-stage.yaml up -d
while ! curl -s http://localhost:8000/_healthz | grep -q "OK"; do
echo "Waiting for API to be ready..."
sleep 1
done
- name: Fetch test suite
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: ansible/eda-qa
path: ${{ env.EDA_QA_PATH }}
token: ${{ secrets.EDA_QA_GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
working-directory: ${{ env.EDA_QA_PATH }}
run: pip install .
- name: Run tests
working-directory: ${{ env.EDA_QA_PATH }}
env:
EDAQA_FERNET_PASSWORD: ${{ secrets.EDAQA_FERNET_PASSWORD }}
EDAQA_ENV: authenticated
EDAQA_UPSTREAM_ENABLED: true
run: pytest
- name: Print EDA logs
if: always()
working-directory: tools/docker
run: |
docker compose -p eda -f docker-compose-stage.yaml logs
- name: Notify to slack if failure
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_USERNAME: GH Slack Notifier for EDA
SLACK_TITLE: Failure of scheduled tests for eda-server
SLACK_MESSAGE: |
Scheduled tests for eda-server failed.
Id: ${{ github.run_id }}"
Workflow: ${{ github.workflow }}
Ping @eda-qe