-
-
Notifications
You must be signed in to change notification settings - Fork 3
67 lines (54 loc) · 1.92 KB
/
testing.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: testing
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
static_analysis:
name: ${{ matrix.make-command }} / Py${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.11]
make-command: [doc8, flake8, pylint, integration_test]
kiwitcms-url: [tcms.kiwitcms.org, public.tenant.kiwitcms.org]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
pip install -U pip
pip install -r devel.txt
- name: Prepare for integration test; report to ${{ matrix.kiwitcms-url }}
if: matrix.make-command == 'integration_test'
run: |
echo "[tcms]" > ~/.tcms.conf
echo "url = https://${{ matrix.kiwitcms-url }}/xml-rpc/" >> ~/.tcms.conf
echo "username = kiwitcms-bot" >> ~/.tcms.conf
echo "password = ${{ secrets.TCMS_PASSWORD }}" >> ~/.tcms.conf
# Ubuntu doesn't like the CA which signs our server certificates
sudo cp .ssl/*.pem /usr/lib/ssl/certs/
sudo update-ca-certificates --fresh
pip install robotframework-seleniumlibrary
if [ -z `which firefox` ]; then
sudo apt-get install firefox
fi
if [ -z `which geckodriver` ]; then
sudo apt-get install firefox-geckodriver
fi
- name: Verify ${{ matrix.make-command }}
run: |
export TCMS_PRODUCT=$GITHUB_REPOSITORY
# branch name or pull/123
export TCMS_PRODUCT_VERSION=$(echo $GITHUB_REF | sed "s|refs/heads/||" | sed "s|refs/||" | sed "s|/merge||")
# short commit number
export TCMS_BUILD=$(echo $GITHUB_SHA | cut -c1-7)
make ${{ matrix.make-command }}