forked from fedora-modularity/libmodulemd
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (43 loc) · 1.02 KB
/
ci.yaml
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
name: Continuous Integration
on: [push, pull_request]
jobs:
stable_tests:
name: Operating Systems (Stable)
runs-on: ubuntu-20.04
continue-on-error: false
strategy:
matrix:
distro:
- Fedora 32
- Fedora 33
- CentOS 7
- CentOS 8
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
env:
DISTRO: ${{ matrix.distro }}
run: |
./.ci/ci-launcher.sh
experimental_tests:
name: Operating Systems (Experimental)
runs-on: ubuntu-20.04
continue-on-error: true
strategy:
matrix:
distro:
- Fedora rawhide
- Archlinux
- Mageia 7
# Disabled for now, since it's broken
#- OpenMandriva cooker
- openSUSE tumbleweed
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
env:
DISTRO: ${{ matrix.distro }}
run: |
./.ci/ci-launcher.sh