We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49723a9 commit 33e1e02Copy full SHA for 33e1e02
.github/workflows/ci.yaml
@@ -11,7 +11,7 @@ concurrency:
11
cancel-in-progress: true
12
13
jobs:
14
- testsuite:
+ voidlinux:
15
strategy:
16
fail-fast: false
17
matrix:
@@ -40,3 +40,23 @@ jobs:
40
make -j
41
- name: Check
42
run: make check
43
+ fedora:
44
+ strategy:
45
+ fail-fast: false
46
+ runs-on: ubuntu-latest:46
47
+ container: registry.fedoraproject.org/fedora-minimal:43
48
+ steps:
49
+ - uses: actions/checkout@v1
50
+ - name: Prepare container
51
+ run: |
52
+ dnf -y update
53
+ dnf -y install gcc libarchive-devel openssl-devel zlib-devel kyua libatf-c-devel libatf-sh-devel
54
+ dnf -y clean all
55
+ - name: Build
56
+ env:
57
+ CC: ${{ matrix.c_compiler }}
58
59
+ ./configure --enable-tests
60
+ make -j
61
+ - name: Check
62
+ run: make check
0 commit comments