Skip to content

Commit 8db7dc2

Browse files
committed
github: move fedora builds to freestanding mode
The target use-case on Fedora is to use libucontext directly with applications, rather than provide a system-wide ucontext API. Signed-off-by: Ariadne Conill <ariadne@ariadne.space>
1 parent f2f9071 commit 8db7dc2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/fedora-tests.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- arch: s390x
2121
platform: linux/s390x
2222
compiler: gcc
23+
- arch: ppc64le
24+
platform: linux/ppc64le
25+
compiler: gcc
2326
- arch: x86_64
2427
platform: linux/amd64
2528
compiler: clang
@@ -29,6 +32,9 @@ jobs:
2932
- arch: s390x
3033
platform: linux/s390x
3134
compiler: clang
35+
- arch: ppc64le
36+
platform: linux/ppc64le
37+
compiler: clang
3238

3339
steps:
3440
- name: Checkout
@@ -48,5 +54,5 @@ jobs:
4854
registry.fedoraproject.org/fedora:latest \
4955
sh -lc '
5056
dnf install -y make glibc-devel ${{matrix.compiler}}
51-
make check ARCH=${{matrix.arch}} CC=${{matrix.compiler}} EXPORT_UNPREFIXED=no BUILD_POSIX=no
57+
make check ARCH=${{matrix.arch}} CC=${{matrix.compiler}} FREESTANDING=yes
5258
'

0 commit comments

Comments
 (0)