File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed
Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,12 @@ jobs:
2323 fail-fast : false
2424 matrix :
2525 container :
26+ - debian:stable
2627 - debian:testing
27- - debian:bookworm
28- # - debian:bullseye
29- # - debian:buster
30- - ubuntu:lunar
31- - ubuntu:jammy
32- # - ubuntu:focal
33- # - ubuntu:bionic
34- # - ubuntu:xenial
28+ - debian:sid
29+ - ubuntu:latest
30+ - ubuntu:rolling
31+ - ubuntu:devel
3532 target :
3633 - native
3734 - aarch64-linux-gnu
8683 fi
8784 ninja -C build
8885 ninja -C build install
86+
87+ - name : Build (dynamically linked binary)
88+ 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
You can’t perform that action at this time.
0 commit comments