We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 069b0fd + 75f426d commit fd4aa65Copy full SHA for fd4aa65
1 file changed
.github/workflows/ci.yml
@@ -23,15 +23,12 @@ jobs:
23
fail-fast: false
24
matrix:
25
container:
26
+ - debian:stable
27
- debian:testing
- - debian:bookworm
28
- #- debian:bullseye
29
- #- debian:buster
30
- - ubuntu:lunar
31
- - ubuntu:jammy
32
- #- ubuntu:focal
33
- #- ubuntu:bionic
34
- #- ubuntu:xenial
+ - debian:sid
+ - ubuntu:latest
+ - ubuntu:rolling
+ - ubuntu:devel
35
target:
36
- native
37
- aarch64-linux-gnu
@@ -86,3 +83,14 @@ jobs:
86
83
fi
87
84
ninja -C build
88
85
ninja -C build install
+
+ - name: Build (dynamically linked binary)
+ run: |
89
+ rm -rf build
90
+ if [ ${{ matrix.target }} = "native" ] ; then
91
+ meson setup . build --werror -Ddynamic-linking=true
92
+ else
93
+ meson setup --cross-file cross.txt . build --werror -Ddynamic-linking=true
94
+ fi
95
+ ninja -C build
96
+ ninja -C build install
0 commit comments