-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
44 lines (41 loc) · 1.06 KB
/
.gitlab-ci.yml
File metadata and controls
44 lines (41 loc) · 1.06 KB
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
stages:
- init
- test
- finish
init:
stage: init
interruptible: true
tags:
- shell
script:
- schutzbot/update_github_status.sh start
test:
before_script:
- mkdir -p /tmp/artifacts
- schutzbot/ci_details.sh > /tmp/artifacts/ci-details-before-run.txt
- cat schutzbot/team_ssh_keys.txt | tee -a ~/.ssh/authorized_keys > /dev/null
script:
- schutzbot/make_rpm_and_install.sh
- schutzbot/playwright_tests.sh
after_script:
- schutzbot/ci_details.sh > /tmp/artifacts/ci-details-after-run.txt || true
- schutzbot/unregister.sh || true
- schutzbot/update_github_status.sh update || true
- schutzbot/save_journal.sh || true
- schutzbot/upload_artifacts.sh
tags:
- terraform/openstack
parallel:
matrix:
- RUNNER:
- rhos-01/fedora-42-x86_64-large
- rhos-01/fedora-43-x86_64-large
- rhos-01/rhel-10.2-nightly-x86_64-large
INTERNAL_NETWORK: ["true"]
finish:
stage: finish
dependencies: []
tags:
- shell
script:
- schutzbot/update_github_status.sh finish